Easy and performant module management for laravel.
composer require brnbio/laravel-modules
php artisan vendor:publish --provider="Brnbio\LaravelModules\ServiceProvider" --tag="config"
Add module config to config/modules.php
'foo' => [
'name' => 'Foobar',
'namespace' => 'App\Modules\Foobar',
'enabled' => true,
]
name Name of the module
namespace Namespace of the module
enabled Enable or disable the module (default: false)
seeder Seeder class name (default: null)
src Path to the module source