- display project if defined on landing page

- delete log settings in app.php (added logging.php)
This commit is contained in:
Arno Kaimbacher 2020-05-14 20:09:21 +02:00
parent f26f3f0919
commit 7b69477712
4 changed files with 97 additions and 6 deletions

View file

@ -28,7 +28,7 @@ return [
|
*/
'env' => env('APP_ENV', 'debug'),
'env' => env('APP_ENV', 'production'),
/*
|--------------------------------------------------------------------------
@ -41,7 +41,7 @@ return [
|
*/
'debug' => env('APP_DEBUG', true),
'debug' => env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------
@ -123,9 +123,9 @@ return [
|
*/
'log' => 'single',
//debug, info, notice, warning, error, critical, alert, emergency.
'log_level' => env('APP_LOG_LEVEL', 'debug'),
// 'log' => 'single',
// //debug, info, notice, warning, error, critical, alert, emergency.
// 'log_level' => env('APP_LOG_LEVEL', 'debug'),
/*
|--------------------------------------------------------------------------
@ -223,7 +223,7 @@ return [
'Input' => 'Illuminate\Support\Facades\Input',
// 'Inspiring' => 'Illuminate\Foundation\Inspiring',
'Lang' => 'Illuminate\Support\Facades\Lang',
'Log' => 'Illuminate\Support\Facades\Log',
'Log' => Illuminate\Support\Facades\Log::class,
'Mail' => 'Illuminate\Support\Facades\Mail',
'Notification' => Illuminate\Support\Facades\Notification::class,
'Password' => 'Illuminate\Support\Facades\Password',