it's a easy tool for laravel +5.1 to generate crud functions base database tables
dweik/crud-generator is a Laravel package for it's a easy tool for laravel +5.1 to generate crud functions base database tables.
It currently has 0 GitHub stars and 62 downloads on Packagist (latest version 1.1.0).
Install it with composer require dweik/crud-generator.
Discover more Laravel packages by dweik
or browse all Laravel packages to compare alternatives.
Last updated
This package generate CRUD(Create, Read, Update and Delete) files base database tables, to save time for programmer.
Require this package with composer using the following command:
composer require dweik/crud-generator
After updating composer, add the service provider to the providers array in config/app.php
Dweik\CrudGenerator\CrudGeneratorServiceProvider::class,
To install this package on only development systems, add the --dev flag to your composer command:
composer require --dev dweik/crud-generator
In Laravel, instead of adding the service provider in the config/app.php file, you can add the following code to your app/Providers/AppServiceProvider.php file, within the register() method:
public function register()
{
if ($this->app->environment() !== 'production') {
$this->app->register(\Dweik\CrudGenerator\CrudGeneratorServiceProvider::class);
}
// ...
}
This will allow your application to load the Laravel CRUD Generator on non-production environments.
You can now generate the CRUD files by
php artisan crud:generate
The Laravel CRUD Generator is open-sourced software licensed under the MIT license
v1.1.0
v1.0.1
V1.0.0