refactor: remove toggleable option from various TextColumn configurations in DelayedGoodsTable, FeedPurchasesTable, OrderResource, and CustomerResource

This commit is contained in:
Yoga Pangestu 2026-03-07 00:14:30 +07:00
parent 275d1a1063
commit b1353fbce9
4 changed files with 6 additions and 12 deletions

View File

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

View File

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

View File

@ -191,8 +191,7 @@ public static function table(Table $table): Table
TextColumn::make('notes')
->label('Catatan')
->sortable()
->searchable()
->toggleable(isToggledHiddenByDefault: true),
->searchable(),
...TimestampColumns::make(),
])

View File

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