Laravel Useful Route Flags and Options

Laravel makes adding a new route a piece of cake 😎. To view all the routes we have been using php artisan route:list and this list becomes quite messy and hard to read as the route keeps growing. Some of the common options Using path and name options 1 2 3 php artisan route:list --path="login" php artisan route:list --name="login" –compact flag 1 php artisan route:list --compact This command shows only Method, URI and Action....

August 18, 2021 · 1 min · Me