Download the PHP package ogrre/laravel-crud-generator without Composer
On this page you can find all versions of the php package ogrre/laravel-crud-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ogrre/laravel-crud-generator
More information about ogrre/laravel-crud-generator
Files in ogrre/laravel-crud-generator
Package laravel-crud-generator
Short Description Package to generate CRUD with all necessary files for new Model
License MIT
Informations about the package laravel-crud-generator
Laravel CRUD Generator
This package provides a simple way to generate CRUD (Create, Read, Update, Delete) operations in Controller with Model, Requests, Migration and Routes for your Laravel application.
Installation:
To install the Laravel CRUD Generator library, run the following command:
After the installation, publish the vendor files by executing the command:
By default, the service provider will be automatically registered in the app.php
file. However, if needed, you can manually add the service provider in the config/app.php
file:
Usage
After installing the package, you can use the command line to generate CRUD operations for a model:
This command will create:
- Model (if it does not exist)
- Controller with CRUD methods
- Migration files for the database
- Requests validation files
- Update the routes file
Customization
You can publish the configuration file and views to customize the generated files:
Contributing
Contributions are welcome and will be fully credited. I accept contributions via Pull Requests on Github.
Support me
All versions of laravel-crud-generator with dependencies
illuminate/support Version ^8.0|^9.0|^10.0|^11.0
illuminate/console Version ^8.0|^9.0|^10.0|^11.0
illuminate/filesystem Version ^8.0|^9.0|^10.0|^11.0
illuminate/database Version ^8.0|^9.0|^10.0|^11.0
laravel/prompts Version ^0.1.21