Laravel - Configuration and Environment
You have this incorrect logging channel configuration in
config/logging.php:
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'days' => '7',
'level' => 'info',
],
What is the error and how do you fix it?