whereUserId($profile_id) ->whereFilterableType('App\Profile') ->whereFilterType('mute') ->pluck('filterable_id'); } public function blockedUserIds($profile_id) { return $this->whereUserId($profile_id) ->whereFilterableType('App\Profile') ->whereFilterType('block') ->pluck('filterable_id'); } public function instance() { return $this->belongsTo(Instance::class, 'filterable_id'); } public function user() { return $this->belongsTo(Profile::class, 'user_id'); } }