Download the PHP package pablolovera/modules-laravel without Composer
On this page you can find all versions of the php package pablolovera/modules-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pablolovera/modules-laravel
More information about pablolovera/modules-laravel
Files in pablolovera/modules-laravel
Package modules-laravel
Short Description Modules for applications based on laravel 5.*
License MIT
Homepage https://github.com/pablolovera/modules-laravel
Informations about the package modules-laravel
Modules for applications based on laravel 5.*
Install
Add ServiceProvider on config/app.php
Publish config
How to use...
First step (IMPORTANT)
Create the Core
module. It's very important!
Then... see the directory app/Core/
Create the other modules...
Then... see the directory app/Modules/<module-name>
Commands available
php artisan ...
Create Module
So... created in app/Modules/<module-name>
When a new module is created, you need add provider in config/app.php
, like a App\Modules\<module-name>\Providers\<module-name>ServiceProvider::class,
Create Controller for existing module
So... created in app/Modules/<module-name>/Http/Controllers/<controller-name>
Create Model for existing module
So... created in app/Modules/<module-name>/Models/<model-name>
Create Request for existing module
So... created in app/Modules/<module-name>/Http/Requests/<request-name>
Create Seeder for existing module
So... created in app/Modules/<module-name>/Database/seeds/<seeder-name>
Create Migration for existing module
So... created in app/Modules/<module-name>/Database/migrations/<migration-name>
Executing Migration for existing module
or
Create Service Provider for existing module
So... created in app/Modules/<module-name>/Providers/<service-provider-name>
Create Transformer for existing module
So... created in app/Modules/<module-name>/Transformers/<transformer-name>
Create Input View for existing module
So... created in app/Modules/<module-name>/Views/<view-name>
Create List View for existing module
So... created in app/Modules/<module-name>/Views/<view-name>
Licence
All versions of modules-laravel with dependencies
nesbot/carbon Version ~1.18
illuminate/console Version ~5.1 || ~5.2
illuminate/support Version ~5.1 || ~5.2