Skip to content

Commit 6d74f50

Browse files
committed
Minor updates
1 parent 7c8c455 commit 6d74f50

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

app/Exports/TimesheetExport.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function headings(): array
2424
'#',
2525
'Project',
2626
'Ticket',
27+
'Details',
2728
'User',
2829
'Time',
2930
'Hours',
@@ -48,6 +49,7 @@ public function collection(): Collection
4849
'#' => $item->ticket->code,
4950
'project' => $item->ticket->project->name,
5051
'ticket' => $item->ticket->name,
52+
'details' => $item->comment,
5153
'user' => $item->user->name,
5254
'time' => $item->forHumans,
5355
'hours' => number_format($item->value, 2, ',', ' '),

app/Filament/Pages/TimesheetExport.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
class TimesheetExport extends Page implements HasForms
1717
{
1818
use InteractsWithForms;
19+
1920
protected static ?string $slug = 'timesheet-export';
2021

2122
protected static ?int $navigationSort = 2;

0 commit comments

Comments
 (0)