From e6f9a1ecf1f14b106af7db3a658e4f03c83a5d75 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 25 Nov 2014 22:41:38 +0000 Subject: [PATCH] Start pulling the dashboard into its own view structure, basic tabs for now --- app/controllers/DashboardController.php | 2 +- app/views/dashboard/index.blade.php | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 app/views/dashboard/index.blade.php diff --git a/app/controllers/DashboardController.php b/app/controllers/DashboardController.php index 13e5a546..d5ff6d30 100644 --- a/app/controllers/DashboardController.php +++ b/app/controllers/DashboardController.php @@ -5,6 +5,6 @@ */ class DashboardController extends Controller { public function showDashboard() { - return 'Coming soon... Back to Status Page.'; + return View::make('dashboard.index'); } } diff --git a/app/views/dashboard/index.blade.php b/app/views/dashboard/index.blade.php new file mode 100644 index 00000000..8bc70e29 --- /dev/null +++ b/app/views/dashboard/index.blade.php @@ -0,0 +1,25 @@ +@extends('layout.master') + +@section('content') +
+

Dashboard. Manage Cachet.

+
+ +
+ +
+ + +
+
+

Coming soon... Back to Status Page.

+
+
Components?
+
Incidents?
+
+
+@stop