1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-15 09:54:03 +00:00
tenancy/src/Database/ParentModelScope.php
2022-09-29 22:20:55 +02:00

28 lines
674 B
PHP

<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Database;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Scope;
class ParentModelScope implements Scope
{
public function apply(Builder $builder, Model $model): void
{
if (! tenancy()->initialized) {
return;
}
$builder->whereHas($builder->getModel()->getRelationshipToPrimaryModel());
}
public function extend(Builder $builder): void
{
$builder->macro('withoutParentModel', function (Builder $builder) {
return $builder->withoutGlobalScope($this);
});
}
}