brnbio/laravel-modules

Modules system for laravel

1.0.4 2023-07-25 10:45 UTC

This package is auto-updated.

Last update: 2024-06-25 12:36:17 UTC


README

laravel-modules

Easy and performant module management for laravel.

Installation

composer require brnbio/laravel-modules
php artisan vendor:publish --provider="Brnbio\LaravelModules\ServiceProvider" --tag="config"

Usage

Load module

Add module config to config/modules.php

'foo' => [
    'name' => 'Foobar',
    'namespace' => 'App\Modules\Foobar',
    'enabled' => true,
]

Config options

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