<?php
namespace Komma\Navigation;
use Komma\Pages\PageService;
class NavigationComposer{
private $pageService;
public function __construct(PageService $pageService)
{
$this->pageService = $pageService;
}
public function compose($view){
$pages = [
'home',
];
$mainMenu = $this->pageService->getPagesRoutesIn($pages);
$view->with(['menuItems'=> $mainMenu]);
}
}