Laravel / Debugging / Package class not found
Package Class not found
-
Steps
1. Issue
The package has been already installed. But laravel shows 'Package Class not found'
2. Solutions
Solution 1add a route in the routes file and call the route
Solution 2Route::get('/clear-cache', function() { Artisan::call('cache:clear'); Artisan::call('config:cache'); return "Cache is cleared"; }); Remove the cache files from boostrap/cache folder