Answers for "which artisan command use to get the route list?"

PHP
8

laravel show routes artisan

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

artisan route list naem

php artisan route:list --name=account
Posted by: Guest on August-18-2021

Code answers related to "which artisan command use to get the route list?"

Browse Popular Code Answers by Language