deangite / laravel-crud
It creates crud for laravel
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:zip
Requires
- laravel/laravel: 5.2.*
This package is not auto-updated.
Last update: 2025-01-22 20:58:29 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.