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
Azad Furkan ŞAKAR
options should be array<string, string> , you can map your cases for Select options.
toeknee
toeknee3w ago
you options what is ProductType::class returning? An Enum? make sue the enum class implements HasLabel
shabxs
shabxsOP3w ago
Yes.. it implements HasLabel
toeknee
toeknee2w ago
Check product type cast is cast on the model otherwise it looks good
shabxs
shabxsOP2w ago
Here is where the error coming from...
No description
shabxs
shabxsOP2w ago
Its relationship filter.....
ChesterS
ChesterS2w ago
Wait, this is both a relationship and an enum? How does that work?
toeknee
toeknee2w ago
@shabxs remove the relationship and just add the enum to it since theres no need to get the options from the DB like that.
shabxs
shabxsOP2w ago
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']); }); })
ChesterS
ChesterS2w ago
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

Did you find this page helpful?