Filament\Forms\Components\Select::isOptionDisabled(): Argument #2 ($label) must be of type string,
I get this error on a select filter with relationship
Filament\Forms\Components\Select::isOptionDisabled(): Argument #2 ($label) must be of type string, App\Enums\ProductType given,
SelectFilter::make('product_type')->label('Product Type')->relationship('product', 'product_type')->options(ProductType::class),
Any possible solution on this....
10 Replies
options should be array<string, string> , you can map your cases for Select options.
you options what is ProductType::class returning? An Enum?
make sue the enum class implements HasLabel
Yes.. it implements HasLabel
Check product type cast is cast on the model otherwise it looks good
Here is where the error coming from...

Its relationship filter.....
Wait, this is both a relationship and an enum?
How does that work?
@shabxs remove the relationship and just add the enum to it since theres no need to get the options from the DB like that.
Yup... and that is not working 🙂
There is no issue in getting the options ......but filtering based on the option is causing error. When I remove the column casting as Enum.. the filtering works perfect
protected function casts(): array
{
return [
// 'product_type' => ProductType::class,
]; } may be isOptionDisabled function require an enum cast check.... as of now a custom query is working fine... SelectFilter::make('product_type') ->options(ProductType::class) ->query(function (Builder $query, array $data) { if (empty($data['value'])) { return $query; } return $query->whereHas('product', function (Builder $query) use ($data) { $query->where('product_type', $data['value']); }); })
]; } may be isOptionDisabled function require an enum cast check.... as of now a custom query is working fine... SelectFilter::make('product_type') ->options(ProductType::class) ->query(function (Builder $query, array $data) { if (empty($data['value'])) { return $query; } return $query->whereHas('product', function (Builder $query) use ($data) { $query->where('product_type', $data['value']); }); })
That might be the problem. AFAIK you can't have both. It's either an enum or a relationship. So keep one or the other.
I could be wrong though