Releases: misterdebug/crud-generator-laravel
Releases · misterdebug/crud-generator-laravel
1.10.6 Generate CRUD with livewire datatable
What's Added :
- Now, you can generate CRUD with livewire datatable
Usage
php artisan make:crud post "title:string, content:text" --with-livewire
Simply run php artisan vendor:publish --provider="Mrdebug\Crudgen\CrudgenServiceProvider"
to publish new stubs before executing the make:crud
command
Full changelog : 1.10.5...1.10.6
Doc : https://github.com/misterdebug/crud-generator-laravel/wiki/Generate-CRUD-with-livewire-datatable
1.10.5 Customizable commentable stub
What's Added :
- You can publish and modify the
commentable
stub in your application'sresources/crudgen/commentable/comment-block.stub
folder.
Simply runphp artisan vendor:publish --tag="commentable-stub"
to publish the stub
Full changelog : 1.10.4...1.10.5
1.10.4 Make service command
What's Added :
make:service
command (complete docs here : https://github.com/misterdebug/crud-generator-laravel/wiki/Create-a-new-Service-file)- new config array available in
crudgen.php
and yes it's a good news, path and namespace are customizable
'paths' =>
[
'service' =>
[
'path' => app_path('Services'),
'namespace' => 'App\Services'
]
]
Full changelog : 1.10.3...1.10.4
1.10.1 Commentable
What's Added :
make:commentable
command (complete docs here : https://github.com/misterdebug/crud-generator-laravel/wiki/Add-a-commentable-structure-to-any-model)
Full changelog : 1.10.0...1.10.1