Hi, this is a scaffold generator for Laravel 5.
composer require 'laralib/l5scaffold' --dev
Open config/app.php
and, to your providers array at the bottom, add:
"Laralib\L5scaffold\GeneratorsServiceProvider"
You're all set. Run php artisan
from the console, and you'll see the new commands make:scaffold
.
php artisan make:scaffold Tweet --schema="title:string:default('Tweet #1'), body:text"
This command will generate:
app/Tweet.php
app/Http/Controllers/TweetController.php
database/migrations/2015_04_23_234422_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
And don't forget to run:
php artisan migrate