Download the PHP package dweik/crud-generator without Composer
On this page you can find all versions of the php package dweik/crud-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download dweik/crud-generator
More information about dweik/crud-generator
Files in dweik/crud-generator
Package crud-generator
Short Description it's a easy tool for laravel +5.1 to generate crud functions base database tables
License MIT
Informations about the package crud-generator
Laravel 5 CRUD Generator
This package generate CRUD(Create, Read, Update and Delete) files base database tables, to save time for programmer.
Install
Require this package with composer using the following command:
After updating composer, add the service provider to the providers
array in config/app.php
To install this package on only development systems, add the --dev
flag to your composer command:
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:
This will allow your application to load the Laravel CRUD Generator on non-production environments.
Automatic CRUD generation for Laravel
You can now generate the CRUD files by
The Laravel CRUD Generator is open-sourced software licensed under the MIT license
Changelog
v1.1.0
- Add executing Laravel authentication to the options
- Add executing Laravel migrate command to the options
- Ignore auth tables
- Ignore migration table
- Add Option for ignore create_at, updated_at and deleted_at columns
- Fix Routing service in all laravel versions +5.1
v1.0.1
- Fix bugs
V1.0.0
- Support mysql, postgres and mysqli
- Generate Add/Edit Page with fields validation
- Use Javascript Validation for Numeric fields
- Add delete button in action field
- Generate Models for database tables
- use namespace to generated files
- Ignore none auto-increment tables
All versions of crud-generator with dependencies
illuminate/support Version ^5.0,<5.6
illuminate/console Version ^5.0,<5.6
illuminate/filesystem Version ^5.0,<5.6
symfony/class-loader Version ^2.3|^3.0