norbybaru / modularize
Modularize Laravel application using a modular pattern
1.2.2
2018-10-21 21:53 UTC
Requires
- php: >=5.6.4
- laravel/framework: >=5.3
This package is auto-updated.
Last update: 2025-03-21 18:37:09 UTC
README
The package encourage implementation of modular app. You can easily generate modules with this package for your Laravel app.
This package support Laravel 5.3 +
Installation
Run the following command from your projects root
composer require norbybaru/modularize
Config
Publish configuration
php artisan vendor:publish --provider="NorbyBaru\Modularize\ModularizeServiceProvider" --tag="modularize-config"
Usage
Open your terminal and run command:
php artisan module:generate -h
You will see output with all different options to use.
Simple example will be to generate a user
module directory, run command:
php artisan module:generate user
This will generate files with following structures:
laravel/ app/ └── Modules/ └── User/ ├── Controllers/ │ └── UserController.php ├── Models/ │ └── User.php ├── Requests/ │ └── UserRequest.php ├── Views/ │ └── index.blade.php ├── Translations/ │ └── en/ │ └── example.php ├── routes │ ├── api.php │ └── web.php └── Helper.php
The package allow you to group modules as well with command:
php artisan module:generate user --group=admin
This will output:
laravel/ app/ └── Modules/ └── Admin/ └── User/ ├── Controllers/ │ └── UserController.php ├── Models/ │ └── User.php ├── Requests/ │ └── UserRequest.php ├── Views/ │ └── index.blade.php ├── Translations/ │ └── en/ │ └── example.php ├── routes │ ├── api.php │ └── web.php └── Helper.php
Credits to: