From 8b9adfb9f86d518cd58b81f333baaa59d7110e16 Mon Sep 17 00:00:00 2001 From: Hereward Mills Date: Mon, 7 Dec 2015 11:25:38 +0000 Subject: [PATCH] Tidy: Remove unused variable. --- app/Http/Controllers/Dashboard/SubscriberController.php | 2 -- 1 file changed, 2 deletions(-) mode change 100644 => 100755 app/Http/Controllers/Dashboard/SubscriberController.php diff --git a/app/Http/Controllers/Dashboard/SubscriberController.php b/app/Http/Controllers/Dashboard/SubscriberController.php old mode 100644 new mode 100755 index 22798a41..053fa1b7 --- a/app/Http/Controllers/Dashboard/SubscriberController.php +++ b/app/Http/Controllers/Dashboard/SubscriberController.php @@ -32,8 +32,6 @@ class SubscriberController extends Controller */ public function showSubscribers() { - $subscribers = Subscriber::all(); - return View::make('dashboard.subscribers.index') ->withPageTitle(trans('dashboard.subscribers.subscribers').' - '.trans('dashboard.dashboard')) ->withSubscribers(Subscriber::all());