Skip to content

Commit

Permalink
Update BackupResource.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bobimicroweber committed Apr 24, 2024
1 parent 1a3c253 commit 60a57b6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions web/app/Filament/Resources/BackupResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ public static function table(Table $table): Table
'failed' => 'danger',
default => 'gray',
}),

Tables\Columns\TextColumn::make('completed_at')
->state(function (Backup $backup) {
return $backup->completed_at ? $backup->completed_at : 'N/A';
}),
])
->filters([
//
Expand Down

0 comments on commit 60a57b6

Please sign in to comment.