I have upgraded my Laravel project from 5.6 to 5.8 (in my local before deploying to live for the first time).
Both Laravel versions are 5.8.5 installed with the same composer.json
In my local, the error pages (404, 503) are the illustrated ones:
vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/illustrated-layout.blade.php
however, in live server
vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/minimal.blade.php
What is causing it? I want live to show the illustrated ones too with nice Go Back button.
Tried these but no luck :(
php artisan config:clear
php artisan cache:clear
composer dump-autoload
php artisan view:clear
php artisan route:clear