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
–compact flag
|
|
This command shows only Method, URI and Action.
Specify columns
|
|
This options and flags make the route list more readable.
๐บ Happy Coding!