rennypoz/laravel-scaffold

This package is abandoned and no longer maintained. No replacement package was suggested.

A Laravel 5.8 Package for quick start developing applications

Installs: 138

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Language:HTML

This package has no released version yet, and little information is available.


README

Laravel Scaffold

Build Status styleci Scrutinizer Code Quality SensioLabsInsight

Packagist

Packagist

Laravel Scaffold is a free and open source Scaffold/Boilerplate for building your custom and modular Laravel application In a very few click. Made with Laravel 5.8.

You can see docs also on https://rennypoz.github.io/laravel-scaffold/

This package provides several features like:

Installation

Install via composer

composer require rennypoz/laravel-scaffold

Register Service Provider

Note! This and next step are optional if you use laravel >= 5.5 with package auto discovery feature.

Add service provider to config/app.php in providers section

Rennypoz\LaravelScaffold\ServiceProvider::class,

Publish Configuration File

php artisan vendor:publish --provider="Rennypoz\LaravelScaffold\ServiceProvider" --tag="config"

Usage

Once you have installed the package you should run:

php artisan init:scaffold

This command will appear a Wizard which will ask to you some questions in order to initialize the Application.

Once you have finished the initialization you should run:

npm install && npm run dev

After the installation, you have done! Launch your server with php artisan serve and visit http://localhost:8000

Security

If you discover any security related issues, please open an issue using the issue tracker.

Credits

This package is bootstrapped with the help of melihovv/laravel-package-generator.