From fb327345a69415f84703ac403d2ba57bf56505d0 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Wed, 10 Aug 2016 20:43:32 +0100 Subject: [PATCH] Remove unused notifications view and controller method --- .../Controllers/Dashboard/DashboardController.php | 11 ----------- .../views/dashboard/notifications/index.blade.php | 15 --------------- 2 files changed, 26 deletions(-) delete mode 100644 resources/views/dashboard/notifications/index.blade.php diff --git a/app/Http/Controllers/Dashboard/DashboardController.php b/app/Http/Controllers/Dashboard/DashboardController.php index e954d954..4e1c9cda 100644 --- a/app/Http/Controllers/Dashboard/DashboardController.php +++ b/app/Http/Controllers/Dashboard/DashboardController.php @@ -98,17 +98,6 @@ class DashboardController extends Controller ->withUngroupedComponents($ungroupedComponents); } - /** - * Shows the notifications view. - * - * @return \Illuminate\View\View - */ - public function showNotifications() - { - return View::make('dashboard.notifications.index') - ->withPageTitle(trans('dashboard.notifications.notifications').' '.trans('dashboard.dashboard')); - } - /** * Fetches all of the incidents over the last 30 days. * diff --git a/resources/views/dashboard/notifications/index.blade.php b/resources/views/dashboard/notifications/index.blade.php deleted file mode 100644 index f7f96d68..00000000 --- a/resources/views/dashboard/notifications/index.blade.php +++ /dev/null @@ -1,15 +0,0 @@ -@extends('layout.dashboard') - -@section('content') -
- - {{ trans('dashboard.notifications.notifications') }} -
-
-
-

{{ trans('dashboard.notifications.notifications') }}

-
-
-@stop