ribafs/crud-generator-laravel

Laravel CRUD Generator

v1.1 2023-08-02 23:45 UTC

This package is auto-updated.

Last update: 2023-08-02 23:46:38 UTC


README

Build Status Total Downloads Latest Stable Version License

This Generator package provides various generators like CRUD, API, Controller, Model, Migration, View for your painless development of your applications.

Requirements

Laravel >= 5.3
PHP >= 5.6.4

Installation on laravel 10

composer require ribafs/crud-generator-laravel --dev

php artisan vendor:publish --provider="Appzcoder\CrudGenerator\CrudGeneratorServiceProvider"

Example

php artisan crud:generate Posts --fields='title#string; email#string;' --controller-namespace=App\Http\Controllers --form-helper=html

Adjusts routes in /routes/web:

Route::resource('admin/products', 'App\Http\Controllers\Admin\ProductsController');

php artisan route:clear

php artisan serve

http://127.0.0.1:8000/posts

In case of problem run:

php artisan route:list


## Documentation
Go through to the [detailed documentation](doc#readme

## API Documentation

[API](api-tutorial.md)

## Screencast

[![Screencast](http://img.youtube.com/vi/831-PFBsYfw/0.jpg)](https://www.youtube.com/watch?v=K2G3kMQtY5Y)

#### If you're still looking for easier one then try this [Admin Panel](https://github.com/appzcoder/laravel-admin)

## Author

[Sohel Amin](http://sohelamin.com) :email: [Email Me](mailto:sohelamincse@gmail.com)

## License

This project is licensed under the MIT License - see the [License File](LICENSE) for details