Download the PHP package kemboielvis/laravel-crud-generator without Composer
On this page you can find all versions of the php package kemboielvis/laravel-crud-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kemboielvis/laravel-crud-generator
More information about kemboielvis/laravel-crud-generator
Files in kemboielvis/laravel-crud-generator
Package laravel-crud-generator
Short Description A laravel CRUD generator
License MIT
Informations about the package laravel-crud-generator
Laravel CRUD Generator
This package is a Laravel CRUD generator that will generate CRUD code for you simply. This package will reduce the time to create a module in Laravel.
It generates the following code:
- Model
- Controller
- Store and Update Request
- Resource
Installation
-
Run
-
To generate Code
The model name should be inside the
App/Models
DirectoryFor the CRUD to be generated fill out the fillables then run the command below
The code will be generated in the following directories:
- Controllers:
App/Http/Controllers
- StoreRequest:
App/Http/Requests/{ModelName}/StoreRequest.php
- UpdateRequest:
App/Http/Requests/{ModelName}/UpdateRequest.php
- Resource:
App/Http/Resources/{ModelName}/{ModelName}Resource.php
Warning
When using this code generator you should be careful because it will overwrite the existing files and written code
License
The Laravel CRUD Generator is open-sourced software licensed under the MIT license.
For new Features and Bugs and Suggestions
If you have any new features or bugs you can create an issue or create a pull request.
All versions of laravel-crud-generator with dependencies
illuminate/support Version ^11.0
illuminate/database Version ^11.0
illuminate/console Version ^11.0
illuminate/filesystem Version ^11.0
illuminate/validation Version ^11.0