F
Filament7mo ago
Mirnes

searching in description

This was working fine in v2 but in v3 I get error Tables\Columns\TextColumn::make('VariantProduct.product_name') ->label('Proizvod / Kategorija') ->description(fn ($record): string => $record->VariantCategory->category_name ?? '') ->searchable(['product_name', 'category_name']) ->weight(FontWeight::Medium), Error: Column not found: 1054 Unknown column 'category_name' in 'where clause'
2 Replies
LeandroFerreira
LeandroFerreira7mo ago
try ->searchable(['product_name', 'VariantCategory.category_name'])
Mirnes
MirnesOP7mo ago
I tried that too, same

Did you find this page helpful?