Answers for "how to manually remove cache in laravel"

0

how to manually remove cache in laravel

//You can call an Artisan command outside the CLI.

Route::get('/clear-cache', function() {
    $exitCode = Artisan::call('cache:clear');
    // return what you want
});
Posted by: Guest on April-27-2021

Code answers related to "how to manually remove cache in laravel"

Browse Popular Code Answers by Language