deangite / laravel-crud
There is no license information available for the latest version (dev-master) of this package.
It creates crud for laravel
dev-master
2016-09-26 07:15 UTC
Requires
- laravel/laravel: 5.2.*
This package is not auto-updated.
Last update: 2026-03-19 02:24:16 UTC
README
Introduction
Laravel crud is a simple package to create CRUD operations creating table migrations.
This is for Laravel 5.2
Installation
-
Get the package using composer
composer require deangite/laravel-crud -
Add the service provider to /config/app.php.
'providers' => [ ... Deangite\LaravelCrud\LaracrudServiceProvider::class, ],
Usage
- To create migrations, models, controllers and routes, run
php artisan laravel:crud - After creating migration files you can simply run
php artisan migrate - It will create routes based on table name.