From ec186a4edbd097f63dfc6d4c7255bd2b1c93e455 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 19 Aug 2016 16:54:28 -0400 Subject: [PATCH] Make a few additional changes that were missed before --- .gitignore | 4 +++- app/Http/Controllers/Controller.php | 11 ++++++----- config/app.php | 5 +++-- config/cache.php | 2 +- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index f487747..c94d145 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,6 @@ /public/uploads /storage/exports /.idea -/.env +.env +Homestead.yaml +Homestead.json diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php index 670ea39..03e02a2 100644 --- a/app/Http/Controllers/Controller.php +++ b/app/Http/Controllers/Controller.php @@ -1,12 +1,13 @@ - env('APP_URL', 'http://localhost'), + 'url' => env('APP_URL', 'http://localhost'), /* |-------------------------------------------------------------------------- @@ -120,7 +120,7 @@ return [ | */ - 'log' => 'single', + 'log' => env('APP_LOG', 'single'), 'log_level' => env('APP_LOG_LEVEL', 'debug'), @@ -172,6 +172,7 @@ return [ */ App\Providers\AppServiceProvider::class, // App\Providers\BroadcastServiceProvider::class, + App\Providers\AuthServiceProvider::class, App\Providers\EventServiceProvider::class, App\Providers\RouteServiceProvider::class, diff --git a/config/cache.php b/config/cache.php index 444f01d..272841b 100644 --- a/config/cache.php +++ b/config/cache.php @@ -86,6 +86,6 @@ return [ | */ - 'prefix' => env('CACHE_NAME', 'laravel'), + 'prefix' => env('CACHE_NAME', 'hypothetical'), ];