From 14b265a0bccc82efb5053792e19c51b6a0daf163 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Thu, 19 Feb 2026 22:19:21 +0700 Subject: [PATCH] feat: Make production date, total eggs, and notes columns searchable. --- .../Manage/EggCollections/Tables/EggCollectionsTable.php | 3 +++ 1 file changed, 3 insertions(+) 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(),