https://github.com/defrindr/laravel-crudify
Easy things to generate CRUD with laravel.
https://github.com/defrindr/laravel-crudify
crud generator laravel library php
Last synced: 2 months ago
JSON representation
Easy things to generate CRUD with laravel.
- Host: GitHub
- URL: https://github.com/defrindr/laravel-crudify
- Owner: defrindr
- Created: 2024-04-04T13:30:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-02T15:37:41.000Z (about 2 years ago)
- Last Synced: 2025-12-14T07:43:30.949Z (7 months ago)
- Topics: crud, generator, laravel, library, php
- Language: PHP
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel CRUDIFY
Easy things to generate CRUD with laravel.
## Installation
```sh
composer require defrindr/crudify
```
## Usage
1. Running generator
```sh
php artisan crudify:gen --module={module name} {model name}
```
It will generate Model, Controller, Service, Request, and Resource in same time
2. Register to route
```php
Route::resource(ExampleController::class);
```
## Publish Package
```sh
php artisan vendor:publish --provider="Defrindr\Crudify\CrudifyServiceProvider"
```