I am using windows platform(,XAMPP) and laravel errors suddenly stopped displaying on the borwser, However they are getting printed in laravel log file inside the storage folder. It just displays white screen. Any idea where is the issue?
*APP_DEBUG is set to true.
*Permissions to storage folder are all set to full control.
app.php
'name' => 'My Application',
'env' => env('APP_ENV', 'local'),
'debug' => env('APP_DEBUG', true),
'url' => env('APP_URL', 'http://localhost'),
'timezone' => 'UTC',
'locale' => 'en',
'fallback_locale' => 'en',
'key' => env('APP_KEY'),
'cipher' => 'AES-256-CBC',
'log' => env('APP_LOG', 'single'),
'log_level' => env('APP_LOG_LEVEL', 'debug'),
ENV File
APP_ENV=local
APP_KEY=base64:ZR4gdAiO+agRkOD9mv0cPmrgR55fKZXXZ/F/YN+fUSk=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=pagebuilder
DB_USERNAME=root
DB_PASSWORD=
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379