You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/Filament/Exports/ResultExporter.php
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,10 @@ public static function getColumns(): array
101
101
->state(function (Result$record): ?string {
102
102
return$record->download_latency_iqm;
103
103
}),
104
+
ExportColumn::make('result_url')
105
+
->state(function (Result$record) {
106
+
return$record->result_url;
107
+
}),
104
108
ExportColumn::make('comments')
105
109
->enabledByDefault(false),
106
110
// 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