Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mcmatters/laravel-route-commands
https://github.com/mcmatters/laravel-route-commands
laravel laravel-command laravel-package
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/mcmatters/laravel-route-commands
- Owner: MCMatters
- Created: 2017-06-26T08:22:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-14T08:20:25.000Z (over 4 years ago)
- Last Synced: 2024-05-18T23:03:45.584Z (8 months ago)
- Topics: laravel, laravel-command, laravel-package
- Language: PHP
- Size: 14.6 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel Route Commands
Package with laravel route commands.
### Installation
```bash
composer require mcmatters/laravel-route-commands
```Include the service provider within your `config/app.php` file.
```php
'providers' => [
McMatters\RouteCommands\ServiceProvider::class,
]
```## Usage
Available commands:
* `php artisan route:check` — checks all routes for existing the methods in controller and unique route names.
* `php artisan route:export` — export all routes to json or xml file.