Answers for "bug just after cache clear laravel 8 work route"

PHP
2

laravel clear route cache

php artisan cache:clear

php artisan route:cache
Posted by: Guest on March-11-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

Code answers related to "bug just after cache clear laravel 8 work route"

Browse Popular Code Answers by Language