Skip to content

Commit

Permalink
feat: created column
Browse files Browse the repository at this point in the history
  • Loading branch information
blt950 committed Oct 10, 2023
1 parent 4600dfd commit 13db699
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions resources/views/reports/feedback.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
data-sort-reset="true">
<thead class="table-light">
<tr>
<th data-field="received" data-sortable="true">Received</th>
<th data-field="submitter" data-sortable="true" data-filter-control="input">Submitter</th>
<th data-field="controller" data-sortable="true" data-filter-control="select">Controller</th>
<th data-field="position" data-sortable="true" data-filter-control="select">Position</th>
Expand All @@ -39,6 +40,7 @@
<tbody>
@foreach($feedback as $f)
<tr>
<td>{{ $f->created_at->toEuropeanDateTime() }}</td>
<td><a href="{{ route('user.show', $f->submitter->name) }}">{{ $f->submitter->name }} ({{ $f->submitter_user_id }})</a></td>
<td>
@isset($f->referenceUser)
Expand Down

0 comments on commit 13db699

Please sign in to comment.