kamrul-haque / action-crud-helper
Generate everything needed for a CRUD operation in Laravel with or without Action classes executing just one command. Also generates frontend scaffolding for blade or vue inertia stack.
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=8.2
- php-school/cli-menu: >=4.3.0
README
Generate everything needed for a CRUD operation in Laravel with or without Action classes executing just one command. Also generates frontend scaffolding for blade or vue inertia stack.
Installation
- Install the package via composer:
composer require kamrul-haque/action-crud-helper --dev
- Publish stubs for files generated:
php artisan vendor:publish --tag="action-crud-helper-stubs"
Usage
- To generate
CRUD
helpers:
php artisan make:crud ModelName --stack --all
supported stacks are api, blade or inertia (inertia vue). --all option will generate everything required for a CRUD operation along with Action classes. Alternatively, run the command without stack & all options to select files to generate interactively.
- To generate only
Action
class:
php artisan make:action ActionName
- To customize the
files
generated, customize the stubs files located instubs
folder: - To publish the tests:
php artisan vendor:publish --tag="action-crud-helper-tests"
Note: the tests for the package only support PestPHP currently.