feat: Make production date, total eggs, and notes columns searchable.

This commit is contained in:
Yoga Pangestu 2026-02-19 22:19:21 +07:00
parent 9ace220020
commit 14b265a0bc

View File

@ -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(),