2017 © Pedro Peláez
 

library crud-generator

it's a easy tool for laravel +5.1 to generate crud functions base database tables

image

dweik/crud-generator

it's a easy tool for laravel +5.1 to generate crud functions base database tables

  • Sunday, June 3, 2018
  • by asd4abyd
  • Repository
  • 1 Watchers
  • 0 Stars
  • 47 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 4 Versions
  • 24 % Grown

The README.md

Laravel 5 CRUD Generator

This package generate CRUD(Create, Read, Update and Delete) files base database tables, to save time for programmer., (*1)

Install

Require this package with composer using the following command:, (*2)

composer require dweik/crud-generator

After updating composer, add the service provider to the providers array in config/app.php, (*3)

Dweik\CrudGenerator\CrudGeneratorServiceProvider::class,

To install this package on only development systems, add the --dev flag to your composer command:, (*4)

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:, (*5)

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., (*6)

Automatic CRUD generation for Laravel

You can now generate the CRUD files by, (*7)

php artisan crud:generate

The Laravel CRUD Generator is open-sourced software licensed under the MIT license, (*8)

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, (*9)

v1.0.1 * Fix bugs, (*10)

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, (*11)

The Versions

03/06 2018

dev-master

9999999-dev

it's a easy tool for laravel +5.1 to generate crud functions base database tables

  Sources   Download

MIT

The Requires

 

The Development Requires

by abdelqader osama

laravel postgresql postgres command bootstrap command-line crud generator route mysql artisan commandline sqlite generate

03/06 2018

1.1.0

1.1.0.0

it's a easy tool for laravel +5.1 to generate crud functions base database tables

  Sources   Download

MIT

The Requires

 

The Development Requires

by abdelqader osama

laravel postgresql postgres command bootstrap command-line crud generator route mysql artisan commandline sqlite generate

14/01 2018

1.0.1

1.0.1.0

it's a easy tool for laravel +5.1 to generate crud functions base database tables

  Sources   Download

MIT

The Requires

 

The Development Requires

by abdelqader osama

laravel postgresql postgres command bootstrap command-line crud generator route mysql artisan commandline sqlite generate

14/01 2018

1.0.0

1.0.0.0

it's a easy tool to generate crud functions for database tables

  Sources   Download

MIT

The Requires

 

The Development Requires

by abdelqader osama