All Projects β†’ laralib β†’ L5scaffold

laralib / L5scaffold

Licence: mit
Scaffold generator for Laravel 5.x

Labels

Projects that are alternatives of or similar to L5scaffold

Laravel Social Auto Posting
🌈Laravel social auto posting
Stars: ✭ 306 (-4.37%)
Mutual labels:  laravel
Laravel5 Jsonapi
Laravel 5 JSON API Transformer Package
Stars: ✭ 313 (-2.19%)
Mutual labels:  laravel
Reading
ζ•΄η†ι˜…θ―»θΏ‡ηš„εΉ²θ΄§ζ–‡η« , 帖子
Stars: ✭ 318 (-0.62%)
Mutual labels:  laravel
Laravel Paginateroute
Laravel router extension to easily use Laravel's paginator without the query string
Stars: ✭ 306 (-4.37%)
Mutual labels:  laravel
Laravel Bookings
Rinvex Bookable is a generic resource booking system for Laravel, with the required tools to run your SAAS like services efficiently. It's simple architecture, accompanied by powerful underlying to afford solid platform for your business.
Stars: ✭ 309 (-3.44%)
Mutual labels:  laravel
Php Snowflake
❄ An ID Generator for PHP based on Snowflake Algorithm (Twitter announced).
Stars: ✭ 313 (-2.19%)
Mutual labels:  laravel
Laravel Starter
A CMS like modular starter application project built with Laravel 8.x.
Stars: ✭ 299 (-6.56%)
Mutual labels:  laravel
Awesome Spark
Curated list of Laravel Spark ressources
Stars: ✭ 319 (-0.31%)
Mutual labels:  laravel
Finance
A self hosted app to help you get a better understanding of your personal finances.
Stars: ✭ 313 (-2.19%)
Mutual labels:  laravel
Laravel Query Logger
πŸ“ A dev tool to log all queries for laravel application.
Stars: ✭ 316 (-1.25%)
Mutual labels:  laravel
Mercurius
Real-time Messenger for Laravel
Stars: ✭ 309 (-3.44%)
Mutual labels:  laravel
Laravel Log Enhancer
Make debugging easier by adding more data to your laravel logs (Laravel 5.6+)
Stars: ✭ 311 (-2.81%)
Mutual labels:  laravel
Corcel
Use WordPress backend with Laravel or any PHP application
Stars: ✭ 3,504 (+995%)
Mutual labels:  laravel
Laravel Attributes
Rinvex Attributable is a robust, intelligent, and integrated Entity-Attribute-Value model (EAV) implementation for Laravel Eloquent, with powerful underlying for managing entity attributes implicitly as relations with ease. It utilizes the power of Laravel Eloquent, with smooth and seamless integration.
Stars: ✭ 304 (-5%)
Mutual labels:  laravel
Laravel S
LaravelS is an out-of-the-box adapter between Swoole and Laravel/Lumen.
Stars: ✭ 3,479 (+987.19%)
Mutual labels:  laravel
Laravel Vue I18n Generator
Generates a vue-i18n compatible include file from your Laravel translations
Stars: ✭ 304 (-5%)
Mutual labels:  laravel
Nocaptcha
πŸ›‚ Helper for Google's new noCAPTCHA (reCAPTCHA v2 & v3)
Stars: ✭ 313 (-2.19%)
Mutual labels:  laravel
Jwt Auth Guard
JWT Auth Guard for Laravel and Lumen Frameworks.
Stars: ✭ 319 (-0.31%)
Mutual labels:  laravel
Laravel Media
Attach files to eloquent models
Stars: ✭ 319 (-0.31%)
Mutual labels:  laravel
Laravel Mail Viewer
View all the mailables in your laravel app at a single place
Stars: ✭ 315 (-1.56%)
Mutual labels:  laravel

Laravel 5.x Scaffold Generator

Travis Packagist Tag

Usage

Step 1: Install Through Composer

composer require 'laralib/l5scaffold' --dev

Step 2: Add the Service Provider

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

Laralib\L5scaffold\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.

Examples

Use this command to generator scaffolding of Tweet in your project:

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

or with more options

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

This command will generate:

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:

php artisan migrate

Custom stub

Create a new folder inside Stubs > views with your UI name custom image

Custom fields in Stubs > views > **ui-name** > fields

Custom pages in Stubs > views > **ui-name** > pages


πŸ’­ Send us your ideas. (creating issues)

##Collaborators Fernando Brito
Sylvio Tavares
Raphael Heitor
Alfred Nutile
Sazzad Hossain Khan
Alexander Makhaev
Adam Brown
TJ Webb
Tsaganos Tolis
Ryan Gurnick

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].