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') +