placeholder = $v; return $this; } public function options(iterable $options): static { $this->options = $options; return $this; } public function render(): View { return view('laralight-tables::toolbar.select-filter', [ 'id' => $this->makeId(), 'key' => $this->key, 'label' => $this->label, 'options' => $this->options, 'placeholder' => $this->placeholder, ]); } }