Skip to content

Commit 073ffe7

Browse files
authored
[Feature] Added result url to export (alexjustesen#1801)
added result url to export
1 parent 437f2e9 commit 073ffe7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

app/Filament/Exports/ResultExporter.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ public static function getColumns(): array
101101
->state(function (Result $record): ?string {
102102
return $record->download_latency_iqm;
103103
}),
104+
ExportColumn::make('result_url')
105+
->state(function (Result $record) {
106+
return $record->result_url;
107+
}),
104108
ExportColumn::make('comments')
105109
->enabledByDefault(false),
106110
// 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

0 commit comments

Comments
 (0)