Answers for "how to remove cache control in laravel"

PHP
0

clear laravel cache

php artisan view:clear
php artisan config:clear
php artisan route:clear
php artisan cache:clear
php artisan clear-compiled
Posted by: Guest on December-10-2021
0

clear cache in laravel without artisan

Route::get('/route-cache', function() {
     $exitCode = Artisan::call('route:cache');
     return 'Routes cache cleared';
 });
Posted by: Guest on July-13-2020

Browse Popular Code Answers by Language