refactor: remove toggleable option from various TextColumn configurations in DelayedGoodsTable, FeedPurchasesTable, OrderResource, and CustomerResource
This commit is contained in:
parent
275d1a1063
commit
b1353fbce9
@ -74,14 +74,12 @@ public static function configure(Table $table): Table
|
|||||||
|
|
||||||
TextColumn::make('notes')
|
TextColumn::make('notes')
|
||||||
->label('Catatan')
|
->label('Catatan')
|
||||||
->limit(30)
|
->limit(30),
|
||||||
->toggleable(isToggledHiddenByDefault: true),
|
|
||||||
|
|
||||||
TextColumn::make('payment_date')
|
TextColumn::make('payment_date')
|
||||||
->label('Tanggal Lunas')
|
->label('Tanggal Lunas')
|
||||||
->date('l, d F Y')
|
->date('l, d F Y')
|
||||||
->sortable()
|
->sortable(),
|
||||||
->toggleable(isToggledHiddenByDefault: true),
|
|
||||||
|
|
||||||
...TimestampColumns::make(),
|
...TimestampColumns::make(),
|
||||||
])
|
])
|
||||||
|
|||||||
@ -65,8 +65,7 @@ public static function configure(Table $table): Table
|
|||||||
->toArray();
|
->toArray();
|
||||||
})
|
})
|
||||||
->listWithLineBreaks()
|
->listWithLineBreaks()
|
||||||
->html()
|
->html(),
|
||||||
->toggleable(),
|
|
||||||
|
|
||||||
TextColumn::make('total_price')
|
TextColumn::make('total_price')
|
||||||
->label('Total Harga')
|
->label('Total Harga')
|
||||||
@ -75,8 +74,7 @@ public static function configure(Table $table): Table
|
|||||||
|
|
||||||
TextColumn::make('note')
|
TextColumn::make('note')
|
||||||
->label('Catatan')
|
->label('Catatan')
|
||||||
->wrap()
|
->wrap(),
|
||||||
->toggleable(),
|
|
||||||
|
|
||||||
...TimestampColumns::make(),
|
...TimestampColumns::make(),
|
||||||
])
|
])
|
||||||
|
|||||||
@ -191,8 +191,7 @@ public static function table(Table $table): Table
|
|||||||
TextColumn::make('notes')
|
TextColumn::make('notes')
|
||||||
->label('Catatan')
|
->label('Catatan')
|
||||||
->sortable()
|
->sortable()
|
||||||
->searchable()
|
->searchable(),
|
||||||
->toggleable(isToggledHiddenByDefault: true),
|
|
||||||
|
|
||||||
...TimestampColumns::make(),
|
...TimestampColumns::make(),
|
||||||
])
|
])
|
||||||
|
|||||||
@ -85,8 +85,7 @@ public static function table(Table $table): Table
|
|||||||
|
|
||||||
TextColumn::make('address')
|
TextColumn::make('address')
|
||||||
->label('Alamat')
|
->label('Alamat')
|
||||||
->limit(40)
|
->limit(40),
|
||||||
->toggleable(isToggledHiddenByDefault: true),
|
|
||||||
|
|
||||||
...TimestampColumns::make(),
|
...TimestampColumns::make(),
|
||||||
])
|
])
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user