Answers for "controller cache laravel"

PHP
0

clear cache using laravel controller

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

Code answers related to "controller cache laravel"

Browse Popular Code Answers by Language