get(); return View::make('dashboard.index')->with([ 'components' => $components, ]); } /** * Shows the notifications view. * * @return \Illuminate\View\View */ public function showNotifications() { return View::make('dashboard.notifications.index')->with([ 'page_title' => trans('dashboard.notifications.notifications').' '.trans('dashboard.dashboard'), ]); } }