There are many ways we can get the list of registered routes in Laravel. I would prefer the below two methods.
Method 1: Using the artisan command – most easy and self-descriptive
php artisan route:list
Method 2:Using the route collection methods
Copy-paste the below script in the web.php and call the Url in the browser.
Route::get('/routes', function() { $routeCollection = Route::getRoutes(); print "<table border='1'>"; foreach ($routeCollection as $value) { echo "<tr><td>"; echo $value->getName(); echo "</td>"; echo "<td>"; echo $value->getActionName(); echo "</td>"; } print "</table>"; });
Leave a Reply