Override not working on production
Created 7 years ago by dominiqueI've got these overrides in my theme:
/**
* The view overrides.
*
* @var array
*/
protected $overrides = [
'streams::errors/404' => 'theme::errors/404',
'streams::errors/500' => 'theme::errors/500',
'anomaly.module.users::password.forgot' => 'theme::password.forgot'
];
But the password override doesn't work on production. It does on the acceptance server and locally.
I'm not quite sure how to debug this or where it could go wrong but I reckon it's cached somewhere. I tried the following commands to no avail:
php artisan view:clear
php artisan route:clear
php artisan cache:clear
php artisan clear-compiled
php artisan optimize
php artisan assets:clear
php artisan twig:clean
php artisan streams:compile
composer dump-autoload
Problem fixed after running
composer update