*/ class Controller extends BaseController { public function __construct() { $navigation = $this->navigation(); Template::vars(compact('navigation')); } public function navigation() { $nav = []; // Overview $nav["Overview"]["Index"] = route('manage.overview.index'); return $nav; } }