This repository has been archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Ferdinand Frank edited this page Jan 31, 2019
·
8 revisions
The following commands are provided by the "laravel-file-generator" package. The most of them are based upon their original Artisan equivalent provided by Laravel applications. These commands give you the option to create PHP classes and files based on the template provided on the corresponding stub
files.
- ConsoleMakeCommand:
php artisan make:command
- ControllerMakeCommand:
php artisan make:controller
- EventGenerateCommand:
php artisan event:generate
- EventMakeCommand:
php artisan make:event
- JobMakeCommand:
php artisan make:job
- ListenerMakeCommand:
php artisan make:listener
- MailMakeCommand:
php artisan make:mail
- MiddlewareMakeCommand:
php artisan make:middleware
- MigrationMakeCommand:
php artisan make:migration
- ModelMakeCommand:
php artisan make:model
- NotificationMakeCommand:
php artisan make:notification
- ObserverMakeCommand:
php artisan make:observer
- PolicyMakeCommand:
php artisan make:policy
- ProviderMakeCommand:
php artisan make:provider
- RequestMakeCommand:
php artisan make:request
- ResourceMakeCommand:
php artisan make:resource
- SeederMakeCommand:
php artisan make:seeder
- TestMakeCommand:
php artisan make:test