A single DB multitenancy package for Laravel based on subdomain routing.
lukapeharda/multitenancy is a Laravel package for a single db multitenancy package for laravel based on subdomain routing..
It currently has 1 GitHub stars and 17 downloads on Packagist (latest version v1.0.2).
Install it with composer require lukapeharda/multitenancy.
Discover more Laravel packages by lukapeharda
or browse all Laravel packages to compare alternatives.
Last updated
MultiTenancy is a Laravel single DB multitenancy package based on subdomain routing.
Require this package, with Composer, in the root directory of your project.
composer require lukapeharda/multitenancy
Add the service provider to config/app.php in the providers array.
LukaPeharda\MultiTenancy\Providers\ContextServiceProvider::class,
Publish the config file and modify its params to fit your needs and installation.
php artisan vendor:publish --provider="LukaPeharda\MultiTenancy\Providers\ContextServiceProvider"
Add the LukaPeharda\MultiTenancy\Scopes\Contextable trait to your models that are "tenant" dependable. This trait will automatically load global scope which will filter all your queries by defined tenant key.
Beside adding trait to your models, your model DB schema needs to have the tenant key as its attribute (and most likely as its foreign key).
To disable tenant global scope use withoutGlobalScope builder method:
$model->withoutGlobalScope(\LukaPeharda\MultiTenancy\Scopes\TenantScope::class);
Fetching the current tenant (and all of its attributes) is available through helper function context.
// To fetch entire tenant object
$tenant = context();
// To fetch one of its attribute
$tenantId = context('id');
MultiTenancy is open-sourced software licensed under the MIT license