Revert "Use sexy laravel stuffs"

This reverts commit 9e821d3f60.
This commit is contained in:
Graham Campbell
2014-12-30 15:41:39 +00:00
parent 9e821d3f60
commit a8752b9100

View File

@@ -10,7 +10,10 @@ class DashboardController extends Controller
public function showDashboard()
{
// TODO: Find steps needed to complete setup.
return View::make('dashboard.index')->withComponents(Component::all());
$components = Component::all();
return View::make('dashboard.index')->with([
'components' => $components,
]);
}
/**
@@ -20,7 +23,9 @@ class DashboardController extends Controller
*/
public function showMetrics()
{
return View::make('dashboard.metrics')->withPageTitle('Metrics - Dashboard');
return View::make('dashboard.metrics')->with([
'pageTitle' => 'Metrics - Dashboard',
]);
}
/**
@@ -30,6 +35,8 @@ class DashboardController extends Controller
*/
public function showNotifications()
{
return View::make('dashboard.notifications')->withPageTitle('Notifications - Dashboard');
return View::make('dashboard.notifications')->with([
'pageTitle' => 'Notifications - Dashboard',
]);
}
}