Hola, hemos encontrado la solución a lo que andabas buscando, continúa leyendo y la hallarás aquí.
Solución:
Route::getRoutes()
devuelve un RouteCollection
. En cada elemento, puede hacer un simple $route->getPath()
para obtener la ruta de la ruta actual.
Cada parámetro protegido se puede obtener con un getter estándar.
El bucle funciona así:
$routeCollection = Route::getRoutes();
foreach ($routeCollection as $value)
echo $value->getPath();
Puedes usar el comando de la consola:
Laravel 4como se pregunta en la pregunta
php artisan routes
Laravel 5más real
php artisan route:list
ayudantes (Laravel 4) :
Usage:
routes [--name[="..."]] [--path[="..."]]
Options:
--name Filter the routes by name.
--path Filter the routes by path.
--help (-h) Display this help message.
--quiet (-q) Do not output any message.
--verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version (-V) Display this application version.
--ansi Force ANSI output.
--no-ansi Disable ANSI output.
--no-interaction (-n) Do not ask any interactive question.
--env The environment the command should run under.
Para Laravel 5, puedes usar el comando artesanal
php artisan route:list
en vez de php artisan routes
.
Reseñas y valoraciones
Si haces scroll puedes encontrar las anotaciones de otros administradores, tú también tienes la habilidad dejar el tuyo si te gusta.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)