14 lines
211 B
PHP
14 lines
211 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Traits;
|
||
|
|
|
||
|
|
use App\Models\Scopes\TenantScope;
|
||
|
|
|
||
|
|
trait BelongsToTenant
|
||
|
|
{
|
||
|
|
protected static function bootBelongsToTenant(): void
|
||
|
|
{
|
||
|
|
static::addGlobalScope(new TenantScope);
|
||
|
|
}
|
||
|
|
}
|