mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 12:44:02 +00:00
28 lines
662 B
PHP
28 lines
662 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)
|
|
{
|
|
if (! tenancy()->initialized) {
|
|
return;
|
|
}
|
|
|
|
$builder->whereHas($builder->getModel()->getRelationshipToPrimaryModel());
|
|
}
|
|
|
|
public function extend(Builder $builder)
|
|
{
|
|
$builder->macro('withoutParentModel', function (Builder $builder) {
|
|
return $builder->withoutGlobalScope($this);
|
|
});
|
|
}
|
|
}
|