2017 © Pedro Peláez
 

library lumen-angular-code-generator

Model, controller, provider and service generator for Lumen 5.6 and Angular 6 from DB schema

image

biliboobrian/lumen-angular-code-generator

Model, controller, provider and service generator for Lumen 5.6 and Angular 6 from DB schema

  • Friday, July 20, 2018
  • by biliboobrian
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

lumen-angular-code-generator

!! WORK IN PROGRESS > ANGULAR GENERATOR !!, (*1)

Model, controller provider and service generator for lumen 5+ and angular 6+ from DB schema., (*2)

Installation

Use composer to install it in your lumen project., (*3)

composer require biliboobrian/lumen-angular-code-generator, (*4)

Modify your bootstrap/app.php providers to add generators to Artisan., (*5)

$app->register(biliboobrian\lumenAngularCodeGenerator\Provider\GeneratorServiceProvider::class);

Usage

Scaffolding from DB

You need a database connection setup in your project., (*6)

Build CRUD models and controllers with various commands (List of available commands will be updated with development progress):, (*7)

  bilibo:lumen:ctrl      Generate CRUD controller for a table name.
  bilibo:lumen:ctrls     Generate CRUD controllers for all tables.
  bilibo:lumen:model     Generate Eloquent model according to table passed in argument.
  bilibo:lumen:models    Generate Eloquent models for all tables.

Default configuration is the following ( you can override them with -c option in command line to provide another config.php file):, (*8)

    'lumen_model_namespace'         => 'App\Models',
    'lumen_ctrl_namespace'          => 'App\Http\Controllers',
    'base_class_lumen_model_name'   => \biliboobrian\lumenAngularCodeGenerator\Model\MicroServiceExtendModel::class,
    'base_class_lumen_ctrl_name'    => \biliboobrian\lumenAngularCodeGenerator\Controller\CrudExtendController::class,
    'lumen_model_output_path'       => app_path() . '/Models',
    'lumen_ctrl_output_path'        => app_path() . '/Http/Controllers',
    'no_timestamps'                 => null,
    'date_format'                   => null,
    'connection'                    => null,
    'add_route'                     => null,
    'add_cache'                     => null,

Use command help for more infos, (*9)

$ php artisan bilibo:lumen:ctrl -h

Generation of controllers and models extend lushdigital/microservice-crud., (*10)

Usage of Generated Controllers and models

By default all controllers provide a set of applicable routes what you can add to your routes/web.php:, (*11)

//for full tables retrieve
$router->get(   '/model',                 'ModelController@index');

//for paginated tables retrieve
$router->get(   '/model',                 'ModelController@get');


$router->get(   '/model/{id}/{relation}', 'ModelController@getRelationList');
$router->get(   '/model/{id}',            'ModelController@show');
$router->post(  '/model',                 'ModelController@store');
$router->put(   '/model/{id}',            'ModelController@update');
$router->delete('/model/{id}',            'ModelController@destroy');

You can add all routes to your web.php using -a option in the bilibo:lumen:ctrls command., (*12)

License

MIT, (*13)

The Versions

20/07 2018

dev-master

9999999-dev

Model, controller, provider and service generator for Lumen 5.6 and Angular 6 from DB schema

  Sources   Download

MIT

The Requires

 

by Avatar biliboobrian

service lumen model code generator controller provider scaffolding angular

20/07 2018

1.0.2

1.0.2.0

Model, controller, provider and service generator for Lumen 5.6 and Angular 6 from DB schema

  Sources   Download

MIT

The Requires

 

by Avatar biliboobrian

service lumen model code generator controller provider scaffolding angular

20/07 2018

1.0.1

1.0.1.0

Model, controller, provider and service generator for Lumen 5.6 and Angular 6 from DB schema

  Sources   Download

MIT

The Requires

 

by Avatar biliboobrian

service lumen model code generator controller provider scaffolding angular