iliakologrivov/route-list

There is no license information available for the latest version (1.0) of this package.

Laravel Route:list console command

1.0 2019-03-04 15:30 UTC

This package is auto-updated.

Last update: 2025-08-05 06:15:41 UTC


README

Wrapper over laravel route:list that adds the ability to specify columns for output table.

Installation

You can install the package via composer:

composer require iliakologrivov/route-list

Publish

By running php artisan vendor:publish --provider="Iliakologrivov\Routelist\RouteListServiceProvider" in your project all files for this package will be published.

Usage

$ php artisan route:list --column=uri --column=name
+----------------+------------------+
| uri            | name             |
+----------------+------------------+
| /              | home             |
| news           | news             |
| news/{id}      | news.show        |
+----------------+------------------+