Installation and Setup
Composer
To install through Composer, by run the following command:
composer require nwidart/laravel-modules
The package will automatically register a service provider and alias. Optionally, publish the package's configuration and publish stubs by running:
php artisan vendor:publish --provider="Nwidart\Modules\LaravelModulesServiceProvider"
To publish only the config:
php artisan vendor:publish --provider="Nwidart\Modules\LaravelModulesServiceProvider" --tag="config"
To publish only the stubs
php artisan vendor:publish --provider="Nwidart\Modules\LaravelModulesServiceProvider" --tag="stubs"
No Comments