Hapus cache tanpa menggunakan komposer di Laravel 8
Route::get('/clear-cache', function() {
$exitCode = Artisan::call('cache:clear');
// return what you want
});
Tyagi420