belongsTo('App\Models\Partner\Client'); } public function user() { return $this->belongsTo('App\Models\User'); } public function scopeByClient($query, $id) { return $query->where('client_id', $id); } public function scopeByUser($query, $id) { return $query->where('user_id', $id); } }