Answers for "php artisan route list command"

PHP
7

get all routes laravel

php artisan route:list
Posted by: Guest on July-28-2020
0

execute artisan command from route

Route::get('clear_cache', function () {

    \Artisan::call('cache:clear');

    dd("Cache is cleared");

});
Posted by: Guest on May-11-2021
0

php artisan route:list for specific name

php artisan route:list --name=account.
Posted by: Guest on May-22-2021

Code answers related to "php artisan route list command"

Browse Popular Code Answers by Language