davidhoeck/laravel-modular
Adds the support of a modular approach to Laravel.
52
4
| Install | |
|---|---|
composer require davidhoeck/laravel-modular |
|
| Latest Version: | 1.3.1 |
| PHP: | >=5.4.0 |
| License: | MIT |
| Last Updated: | Feb 27, 2017 |
| Links: | GitHub · Packagist |
Maintainer: davidhoeck
Laravel Modular
Adds the support of a modular approach to Laravel 5.
Agenda
- Installation
- Get started
- Using Laravel Modular
Installation
The easiest and common way is to install the package via Composer.
Add this line to your composer.json
"davidhoeck/laravel-modular": "dev-master"
or paste this line into your terminal.
composer require "davidhoeck/laravel-modular"
Add the following line to your config/app.php under the section providers
DavidHoeck\LaravelModular\ModuleServiceProvider::class
Get Started
Generate a new module with
php artisan make:module <module-name>
*** Optional Flags ***
Generate with a base Controller
php artisan make:module <module-name> --with-controller
Generate with a base Model
php artisan make:module <module-name> --with-model
Related Packages
erirk/paypalpayment
laravel-paypalpayment is simple package help you process direct credit card paym...
0
doctrine/dbal
Powerful PHP database abstraction layer (DBAL) with many features for database s...
628,058,007
9,707