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());