sbine/simple-tenancy

Simple Laravel multi-tenancy in the same database
3,713 37
Install
composer require sbine/simple-tenancy
Latest Version:0.0.7
PHP:^8.2
License:MIT
Last Updated:Jun 18, 2025
Links: GitHub  ·  Packagist
Maintainer: sbine

Simple Laravel Multi-Tenancy

Build status

Simple Tenancy adds automatic multi-tenant support to Eloquent models stored in a shared database.

It requires zero configuration in most cases, relying on established Laravel conventions and a single column on each table.

How it works

Under the hood, it has only 4 components:

  1. Tenant: Keeps track of the current user
  2. HasTenancy: A trait for models belonging to the tenant, which registers:
  3. TenancyScope: A global scope limiting all the model's queries to the current tenant
  4. TenancyObserver: An observer which sets the current tenant column/identifier on save

By default, the tenant is Laravel's Auth::user(), and all tenancy checks are disabled when no one is authenticated.

Installation

  1. Install using Composer:
composer require sbine/simple-tenancy
  1. Add the HasTenancy trait to all models belonging to the tenant:
class Account extends Model
{
    use \Sbine\Tenancy\HasTenancy;
}
  1. Ensure a user_id column exists on the table of every model using the trait.

Customizing the tenant column/ID

If needed, you can customize the name of the tenant column or identifier by extending the Tenant class and binding it into the container:

class MyTenant extends \Sbine\Tenancy\Tenant
{
    /**
     * Retrieve the column identifying each model's tenant.
     */
    public function column()
    {
        return 'tenant_hashid';
    }

    /**
     * Retrieve the current tenant's identifier.
     */
    public function id()
    {
        return $this->user->hashid;
    }
}

Customizing tenancy behavior

By default, if no user is authenticated tenancy will be completely disabled. This is by design so the library doesn't interfere with testing, seeding, and other unauthenticated model usage.

To change the tenancy behavior in any way, you can override the Tenant binding in the application container.

For example, to prevent all querying and saving of tenant models when no one is authenticated:

    // In AppServiceProvider.php
    public function register()
    {
        $this->app->singleton(\Sbine\Tenancy\Tenant::class, function () {
            // Throw an AuthenticationException if auth check fails
            return new \Sbine\Tenancy\Tenant(Auth::authenticate());
        });
    }

To allow overriding tenancy checks based on a policy or method, pass a callback returning true or false:

    // In AppServiceProvider.php
    public function register()
    {
        $this->app->singleton(\Sbine\Tenancy\Tenant::class, function () {
            return new \Sbine\Tenancy\Tenant(Auth::user(), function ($user) {
                return $user->can('admin');
            });
        });
    }

For complete control over tenant behavior, you can bind your own Tenant implementation:

    // In AppServiceProvider.php
    public function register()
    {
        $this->app->singleton(\Sbine\Tenancy\Tenant::class, function () {
            return new MyTenant;
        });
    }

Disabling tenancy

For convenience, a SuperAdmin class is provided which you can bind at any time to disable tenant checks:

    $this->app->singleton(\Sbine\Tenancy\Tenant::class, \Sbine\Tenancy\SuperAdmin::class);

Related Packages

rinvex/laravel-tenants

Rinvex Tenants is a contextually intelligent polymorphic Laravel package, for si...

3,506 82
cortex/tenants

Cortex Tenants is a frontend layer for the contextually intelligent polymorphic...

2,938 13
hesto/multi-auth

Multi Auth for Laravel

494,948 440
simplesoftwareio/simple-qrcode

Simple QrCode is a QR code generator made for Laravel.

33,492,273 2,900
sarav/laravel-multiauth

A Simple Laravel Package for handling multiple authentication

31,241 50