refactor: Standardize created_at column date format to include full day name and refactor arrow function syntax in various Filament resources.
This commit is contained in:
parent
aadd1da05a
commit
4a811d01f0
@ -81,7 +81,7 @@ public static function configure(Table $table): Table
|
||||
|
||||
TextColumn::make('created_at')
|
||||
->label('Dibuat')
|
||||
->dateTime('d/m/Y H:i')
|
||||
->dateTime('l, d F Y H:i')
|
||||
->toggleable(isToggledHiddenByDefault: true),
|
||||
])
|
||||
->filters([
|
||||
|
||||
@ -41,7 +41,7 @@ public static function configure(Table $table): Table
|
||||
|
||||
TextColumn::make('created_at')
|
||||
->label('Dibuat')
|
||||
->dateTime('d/m/Y H:i')
|
||||
->dateTime('l, d F Y H:i')
|
||||
->toggleable(isToggledHiddenByDefault: true),
|
||||
])
|
||||
->filters([
|
||||
|
||||
@ -78,7 +78,7 @@ public static function configure(Table $table): Table
|
||||
|
||||
TextColumn::make('created_at')
|
||||
->label('Dibuat')
|
||||
->dateTime('d/m/Y H:i')
|
||||
->dateTime('l, d F Y H:i')
|
||||
->toggleable(isToggledHiddenByDefault: true),
|
||||
])
|
||||
->filters([
|
||||
|
||||
@ -216,7 +216,7 @@ public static function table(Table $table): Table
|
||||
|
||||
TextColumn::make('created_at')
|
||||
->label('Dibuat')
|
||||
->dateTime('d/m/Y H:i')
|
||||
->dateTime('l, d F Y H:i')
|
||||
->toggleable(isToggledHiddenByDefault: true),
|
||||
])
|
||||
->filters([
|
||||
|
||||
Loading…
Reference in New Issue
Block a user