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