You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
388 B
17 lines
388 B
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
trait OwnedByAgency
|
|
{
|
|
public static function bootOwnedByAgency()
|
|
{
|
|
static::addGlobalScope('by_owner', function (Builder $builder) {
|
|
if (auth()->user() && auth()->user()->agency) {
|
|
$builder->where('owner_id', auth()->user()->agency->id);
|
|
}
|
|
});
|
|
}
|
|
}
|