From be793a9fd1503923357a5c3a7fef9d9744790fd2 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Mon, 7 Dec 2015 12:04:05 +0000 Subject: [PATCH] Revert "Tidy: Remove unused variable." --- app/Http/Controllers/Dashboard/SubscriberController.php | 2 ++ 1 file changed, 2 insertions(+) mode change 100755 => 100644 app/Http/Controllers/Dashboard/SubscriberController.php diff --git a/app/Http/Controllers/Dashboard/SubscriberController.php b/app/Http/Controllers/Dashboard/SubscriberController.php old mode 100755 new mode 100644 index 053fa1b7..22798a41 --- a/app/Http/Controllers/Dashboard/SubscriberController.php +++ b/app/Http/Controllers/Dashboard/SubscriberController.php @@ -32,6 +32,8 @@ 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());