2017 © Pedro Peláez
 

library schema-wireframe

Quickly stub out Laravel models, views and controllers based on MySQL's schema.

image

develme/schema-wireframe

Quickly stub out Laravel models, views and controllers based on MySQL's schema.

  • Tuesday, August 18, 2015
  • by Verron
  • Repository
  • 3 Watchers
  • 2 Stars
  • 28 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Schema Wireframe

This package was created to quickly stub/frame out controllers, models, and views in a CRUD fashion., (*1)

Installation

Via Composer Require, (*2)

composer require develme/schema-wireframe --dev

Configuration

Configure schema connection settings within config/database.php, so the package knows how to get table information from MySQL. This connection has to be named schema., (*3)

    //...
    'connections' => [
    //...
        'schema' => [
            'driver'    => 'mysql',
            'host'      => env('DB_HOST', 'localhost'),
            'database'  => 'information_schema',
            'username'  => env('DB_USERNAME', 'forge'),
            'password'  => env('DB_PASSWORD', ''),
            'charset'   => 'utf8',
            'collation' => 'utf8_unicode_ci',
            'prefix'    => '',
            'strict'    => false,
        ],
    //...

Make sure to register the service provider within config/app.php, (*4)

// ...
/*
 * Third Party Service Providers...
 */
'DevelMe\SchemaServiceProvider',
// ...

Generating Files

This process should be done after you run your migrations. It pulls table and column information from MySQL's information_schema database., (*5)

Controllers

To generate a controller, you would type:, (*6)

php artisan make:schema-controller <controller class name> [--table=<table name>] [--model=<model class name>]

Example:, (*7)

php artisan make:schema-controller Admin\\User --table="users" --model="App\\User"

Please note that when providing namespaces, include two back slashes (\\), (*8)

Also note that when providing the model class, the root namespace should also be included, (*9)

Models

To generate a model, you would type:, (*10)

php artisan make:schema-model <model class name> [--table=<table name>]

Example:, (*11)

php artisan make:schema-model User --table="users" 

Please note that the root namespace does not have to be provided here, (*12)

Views

To generate a view, you would type:, (*13)

php artisan make:schema-view <model class name> [--table=<table name>] [--theme=<bootstrap|foundation>] [--path=<directory>]

Example 1:, (*14)

php artisan make:schema-view User --table="users" --theme="bootstrap"

Example 2:, (*15)

php artisan make:schema-view User --table="users" --path="resources/views/example"

Please note that the root namespace does not have to be provided here, (*16)

Themes

Currently, only two themes are provided. Bootstrap and Foundation., (*17)

Theoretically, you could create a custom theme ad [package root]/src/themes/[theme name]/view but there's a possibility of composer overwriting those files. Support for loading views from another location can be added if the need arises., (*18)

MVC Generation

It is possible to generate the model, view, and controller all at once. This is currently an experimental command as it is somewhat restrictive and incomplete, (*19)

A resource controller can also be appended to your routes.php file. If you say yes when the question arises., (*20)

For an MVC Generation, you would type:, (*21)

php artisan make:schema-app <model class name> <controller class name> [--table=<table name>] [--theme=<bootstrap|foundation>]

Example:, (*22)

php artisan make:schema-app User Admin\\User --table="users" --theme="bootstrap"

The Versions

18/08 2015

dev-master

9999999-dev

Quickly stub out Laravel models, views and controllers based on MySQL's schema.

  Sources   Download

MIT

The Requires

 

by Verron Knowles

14/06 2015

v0.0.2

0.0.2.0

Quickly stub out Laravel models, views and controllers based on MySQL's schema.

  Sources   Download

MIT

The Requires

 

by Verron Knowles

14/06 2015

v0.0.1

0.0.1.0

Quickly stub out Laravel models, views and controllers based on MySQL's schema.

  Sources   Download

MIT

The Requires

 

by Verron Knowles