iliakologrivov/route-list

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

Laravel Route:list console command

Installs: 316

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/iliakologrivov/route-list

1.0 2019-03-04 15:30 UTC

This package is auto-updated.

Last update: 2025-10-05 06:40:12 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        |
+----------------+------------------+