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')
|
||||
->label('Catatan')
|
||||
->limit(30)
|
||||
->toggleable(isToggledHiddenByDefault: true),
|
||||
->limit(30),
|
||||
|
||||
TextColumn::make('payment_date')
|
||||
->label('Tanggal Lunas')
|
||||
->date('l, d F Y')
|
||||
->sortable()
|
||||
->toggleable(isToggledHiddenByDefault: true),
|
||||
->sortable(),
|
||||
|
||||
...TimestampColumns::make(),
|
||||
])
|
||||
|
||||
@ -65,8 +65,7 @@ public static function configure(Table $table): Table
|
||||
->toArray();
|
||||
})
|
||||
->listWithLineBreaks()
|
||||
->html()
|
||||
->toggleable(),
|
||||
->html(),
|
||||
|
||||
TextColumn::make('total_price')
|
||||
->label('Total Harga')
|
||||
@ -75,8 +74,7 @@ public static function configure(Table $table): Table
|
||||
|
||||
TextColumn::make('note')
|
||||
->label('Catatan')
|
||||
->wrap()
|
||||
->toggleable(),
|
||||
->wrap(),
|
||||
|
||||
...TimestampColumns::make(),
|
||||
])
|
||||
|
||||
@ -191,8 +191,7 @@ public static function table(Table $table): Table
|
||||
TextColumn::make('notes')
|
||||
->label('Catatan')
|
||||
->sortable()
|
||||
->searchable()
|
||||
->toggleable(isToggledHiddenByDefault: true),
|
||||
->searchable(),
|
||||
|
||||
...TimestampColumns::make(),
|
||||
])
|
||||
|
||||
@ -85,8 +85,7 @@ public static function table(Table $table): Table
|
||||
|
||||
TextColumn::make('address')
|
||||
->label('Alamat')
|
||||
->limit(40)
|
||||
->toggleable(isToggledHiddenByDefault: true),
|
||||
->limit(40),
|
||||
|
||||
...TimestampColumns::make(),
|
||||
])
|
||||
|
||||
Loading…
Reference in New Issue
Block a user