Dashboard view refactor.

This commit is contained in:
James Brooks
2015-01-01 10:39:22 +00:00
parent 5aadb947f0
commit 67bfe5a449
20 changed files with 43 additions and 25 deletions

View File

@@ -24,7 +24,7 @@ class DashboardController extends Controller
*/
public function showMetrics()
{
return View::make('dashboard.metrics')->with([
return View::make('dashboard.metrics.index')->with([
'pageTitle' => 'Metrics - Dashboard',
]);
}
@@ -36,7 +36,7 @@ class DashboardController extends Controller
*/
public function showNotifications()
{
return View::make('dashboard.notifications')->with([
return View::make('dashboard.notifications.index')->with([
'pageTitle' => 'Notifications - Dashboard',
]);
}