2017 © Pedro Peláez
 

package scaffoldvel

Extend Laravel 5's generators scaffold and create custom views

image

raphagodoi/scaffoldvel

Extend Laravel 5's generators scaffold and create custom views

  • Monday, July 16, 2018
  • by raphagodoi
  • Repository
  • 1 Watchers
  • 0 Stars
  • 62 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 5 % Grown

The README.md

Laravel 5.x Scaffold Generator

Usage

Step 1: Install Through Composer

composer require 'raphagodoi/scaffoldvel' --dev

Step 2: Add the Service Provider

Open config/app.php and, to your providers array at the bottom, add:, (*1)

RaphaGodoi\ScaffoldVel\GeneratorsServiceProvider::class

Step 3: Run Artisan!

You're all set. Run php artisan from the console, and you'll see the new commands make:scaffold., (*2)

Examples

Use this command to generator scaffolding of Tweet in your project:, (*3)

php artisan make:scaffold Tweet \
    --schema="title:string:default('Tweet #1'), body:text"

or with more options, (*4)

php artisan make:scaffold Tweet \
    --schema="title:string:default('Tweet #1'), body:text" \
    --ui="bs3" \
    --prefix="admin"

This command will generate:, (*5)

app/Tweet.php
app/Http/Controllers/TweetController.php

database/migrations/201x_xx_xx_xxxxxx_create_tweets_table.php
database/seeds/TweetTableSeeder.php

resources/views/layout.blade.php
resources/views/tweets/index.blade.php
resources/views/tweets/show.blade.php
resources/views/tweets/edit.blade.php
resources/views/tweets/create.blade.php

After don't forget to run:, (*6)

php artisan migrate

Custom stub

Create a new folder inside scaffold/ ** your view name ** // default is bs3, (*7)

:thought_balloon: Send us your ideas. (creating issues), (*8)

Collaborators

Package baseda na package:, (*9)

https://github.com/laralib/l5scaffold, (*10)

The Versions

16/07 2018

dev-master

9999999-dev

Extend Laravel 5's generators scaffold and create custom views

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Raphael Godoi

laravel generators scaffold laravel5

26/05 2017

0.5

0.5.0.0

Extend Laravel 5's generators scaffold and create custom views

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Raphael Godoi

laravel generators scaffold laravel5

03/11 2016

dev-develop

dev-develop

Extend Laravel 5's generators scaffold and create custom views

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Raphael Godoi

laravel generators scaffold laravel5

03/11 2016

0.3

0.3.0.0

Extend Laravel 5's generators scaffold and create custom views

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Raphael Godoi

laravel generators scaffold laravel5

03/11 2016

0.4

0.4.0.0

Extend Laravel 5's generators scaffold and create custom views

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Raphael Godoi

laravel generators scaffold laravel5

03/11 2016

0.2

0.2.0.0

Extend Laravel 5's generators scaffold and create custom views

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Raphael Godoi

laravel generators scaffold laravel5

01/11 2016

0.1

0.1.0.0

Extend Laravel 5's generators scaffold and create custom views

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Raphael Godoi

laravel generators scaffold laravel5