[input_key1, input_key2]]. * * @var array */ public $relations = []; public function place($id) { $this->where('place_id', $id); } public function key($v) { $this->whereHas('place', fn ($q) => $q->enable()->whereIn('key', explode(',', $v))); } public function name($v) { $this->whereLike('name', $v); } }