Last active
August 19, 2018 19:59
-
-
Save Snaver/05a11a580eb09f9c02005b585858c7f3 to your computer and use it in GitHub Desktop.
Output Laravel Routes to Browser. https://medium.com/@Snaverz/laravel-output-routes-to-web-browser-e2209b7160d2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Route::get('/route-list', function () { | |
Artisan::call('route:list'); | |
return '<pre>'.Artisan::output(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment