laravel composer cache code example
Example 1: laravel fix cache
php artisan cache:clear
Example 2: clear cache without using composer in laravel 8
Route::get('/clear-cache', function() {
$exitCode = Artisan::call('cache:clear');
// return what you want
});