Skip to content

Commit

Permalink
feat(past_maintenances): Add Scheduled At and End At to past incidents
Browse files Browse the repository at this point in the history
  • Loading branch information
herrtxbias committed Mar 18, 2021
1 parent 002800b commit b93cc24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions resources/lang/en/past.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
'title' => 'Title',
'status' => 'Status',
'impact' => 'Impact',
'scheduled_at' => 'Scheduled at',
'end_at' => 'End at',
'reporter' => 'Reporter',
],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
<x-table.heading>{{ __('past.tables.head.title') }}</x-table.heading>
<x-table.heading>{{ __('past.tables.head.status') }}</x-table.heading>
<x-table.heading>{{ __('past.tables.head.impact') }}</x-table.heading>
<x-table.heading>{{ __('past.tables.head.scheduled_at') }}</x-table.heading>
<x-table.heading>{{ __('past.tables.head.end_at') }}</x-table.heading>
<x-table.heading>{{ __('past.tables.head.reporter') }}</x-table.heading>
<x-table.heading></x-table.heading>
</x-slot>
Expand All @@ -30,6 +32,8 @@
&nbsp;&nbsp;
</span>
</x-table.cell>
<x-table.cell>{{ $incident->scheduled_at }}</x-table.cell>
<x-table.cell>{{ $incident->end_at }}</x-table.cell>
<x-table.cell>{{ $incident->getReporter()->name }}</x-table.cell>
<x-table.cell>
@can('delete_incidents')
Expand Down

0 comments on commit b93cc24

Please sign in to comment.