cache effacer sans utiliser de compositeur dans Laravel 8

Route::get('/clear-cache', function() {
    $exitCode = Artisan::call('cache:clear');
    // return what you want
});
Tyagi420