Skip to content

Commit

Permalink
added result url to export
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjustesen committed Nov 20, 2024
1 parent 437f2e9 commit 8ab8e8d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/Filament/Exports/ResultExporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ public static function getColumns(): array
->state(function (Result $record): ?string {
return $record->download_latency_iqm;
}),
ExportColumn::make('result_url')
->state(function (Result $record) {
return $record->result_url;
}),
ExportColumn::make('comments')
->enabledByDefault(false),
// ExportColumn::make('status'), // TODO: enable status when upgrading to PHP v8.3: https://php.watch/versions/8.3/dynamic-class-const-enum-member-syntax-support
Expand Down

0 comments on commit 8ab8e8d

Please sign in to comment.