feat: Make production date, total eggs, and notes columns searchable.
This commit is contained in:
parent
9ace220020
commit
14b265a0bc
@ -28,15 +28,18 @@ public static function configure(Table $table): Table
|
|||||||
TextColumn::make('production_date')
|
TextColumn::make('production_date')
|
||||||
->label('Tanggal Produksi')
|
->label('Tanggal Produksi')
|
||||||
->dateTime('l, d F Y H:i')
|
->dateTime('l, d F Y H:i')
|
||||||
|
->searchable()
|
||||||
->sortable(),
|
->sortable(),
|
||||||
|
|
||||||
TextColumn::make('total_eggs')
|
TextColumn::make('total_eggs')
|
||||||
->label('Total Telur')
|
->label('Total Telur')
|
||||||
->numeric()
|
->numeric()
|
||||||
|
->searchable()
|
||||||
->sortable(),
|
->sortable(),
|
||||||
|
|
||||||
TextColumn::make('notes')
|
TextColumn::make('notes')
|
||||||
->label('Catatan')
|
->label('Catatan')
|
||||||
|
->searchable()
|
||||||
->wrap()
|
->wrap()
|
||||||
->toggleable(),
|
->toggleable(),
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user