flightsadmin / crudgenerator
Crud Generator automatically generates all necessary files for a complete crud. This includes livewire component, factories, migrations, models, blades & seeders.
Requires
- illuminate/support: ~5|^6|^7|^8
- laravel/ui: ^2|^3
- livewire/livewire: ^1|^2
README
Crud Generator automatically generates all necessary files for a complete crud. This includes factories, migrations, models, blades, requests & seeders. This package also has the possibility to create relations between models.
For relations to work you'll need to manually add comments to the User Model otherwise it won't generate it for you.
These comments will be automatically added by models created by this CrudGenerator. Refer to Relations section for more info.
Installation
Via Composer
$ composer require flightsadmin/crudgenerator
Usage
If you would like to publish the other file such as config, stubs and views to customize them you can do so with
$ php artisan vendor:publish --provider="Flightsadmin\CrudGenerator\CrudGeneratorServiceProvider"