clear cache without using composer in laravel 8

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

Also in PHP: