Fix Composer Update Errors in deleted Controllers
Whenever we do a composer update, and later delete some controllers,
the application autoloader will still look for those files and throw exception errors
if they are not found
To fix that problem cache clear wont do, instead update composer again to rebuild
the indexes:
composer update
You might also try and run:
composer dump-autoload -o to update autoloader.
You can clear the cached views by running:
php artisan view:clear
optional:
php artisan cache:clear