An open API service indexing awesome lists of open source software.

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.

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"
```