deangite/laravel-crud is a Laravel package for it creates crud for laravel.
It currently has 1 GitHub stars and 13 downloads on Packagist.
Install it with composer require deangite/laravel-crud.
Discover more Laravel packages by deangite
or browse all Laravel packages to compare alternatives.
Last updated
Laravel crud is a simple package to create CRUD operations creating table migrations.
This is for Laravel 5.2
Get the package using composer
composer require deangite/laravel-crud
Add the service provider to /config/app.php.
'providers' => [
...
Deangite\LaravelCrud\LaracrudServiceProvider::class,
],
php artisan laravel:crud
php artisan migrate