diff --git a/app/Filament/Resources/Manage/EggCollections/Tables/EggCollectionsTable.php b/app/Filament/Resources/Manage/EggCollections/Tables/EggCollectionsTable.php index a379b0a..5bcb954 100644 --- a/app/Filament/Resources/Manage/EggCollections/Tables/EggCollectionsTable.php +++ b/app/Filament/Resources/Manage/EggCollections/Tables/EggCollectionsTable.php @@ -28,15 +28,18 @@ public static function configure(Table $table): Table TextColumn::make('production_date') ->label('Tanggal Produksi') ->dateTime('l, d F Y H:i') + ->searchable() ->sortable(), TextColumn::make('total_eggs') ->label('Total Telur') ->numeric() + ->searchable() ->sortable(), TextColumn::make('notes') ->label('Catatan') + ->searchable() ->wrap() ->toggleable(),