Start pulling the dashboard into its own view structure, basic tabs for now

This commit is contained in:
James Brooks
2014-11-25 22:41:38 +00:00
parent 9d5927afc6
commit e6f9a1ecf1
2 changed files with 26 additions and 1 deletions
+1 -1
View File
@@ -5,6 +5,6 @@
*/
class DashboardController extends Controller {
public function showDashboard() {
return 'Coming soon... <a href="/">Back to Status Page.</a>';
return View::make('dashboard.index');
}
}