From 9e821d3f60355c0cc87f80c835b007fd4a59b297 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Tue, 30 Dec 2014 15:36:06 +0000 Subject: [PATCH] Use sexy laravel stuffs --- app/controllers/DashboardController.php | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/app/controllers/DashboardController.php b/app/controllers/DashboardController.php index efdb331e..3e20e246 100644 --- a/app/controllers/DashboardController.php +++ b/app/controllers/DashboardController.php @@ -10,10 +10,7 @@ class DashboardController extends Controller public function showDashboard() { // TODO: Find steps needed to complete setup. - $components = Component::all(); - return View::make('dashboard.index')->with([ - 'components' => $components, - ]); + return View::make('dashboard.index')->withComponents(Component::all()); } /** @@ -23,9 +20,7 @@ class DashboardController extends Controller */ public function showMetrics() { - return View::make('dashboard.metrics')->with([ - 'pageTitle' => 'Metrics - Dashboard', - ]); + return View::make('dashboard.metrics')->withPageTitle('Metrics - Dashboard'); } /** @@ -35,8 +30,6 @@ class DashboardController extends Controller */ public function showNotifications() { - return View::make('dashboard.notifications')->with([ - 'pageTitle' => 'Notifications - Dashboard', - ]); + return View::make('dashboard.notifications')->withPageTitle('Notifications - Dashboard'); } }