Skip to content

Commit

Permalink
Added calendar column in event overview
Browse files Browse the repository at this point in the history
  • Loading branch information
blt950 committed Aug 9, 2024
1 parent fd5fd62 commit 8c9ab04
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions resources/views/events/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<th data-field="start_date" data-sortable="true" data-filter-control="input">Start Date</th>
<th data-field="end_date" data-sortable="true" data-filter-control="input">End Date</th>
<th data-field="parent" data-sortable="true" data-filter-control="input">Parent Event</th>
<th data-field="calendar" data-sortable="true" data-filter-control="select">Calendar</th>
<th data-field="createdby" data-sortable="true" data-filter-control="select">Created by</th>
<th data-field="actions" data-sortable="false" data-filter-control="false">Actions</th>
</tr>
Expand All @@ -49,6 +50,7 @@
<p class="text-muted mt-auto">Id: {{ $event->parent_id }}</p>
@endif
</td>
<td>{{ $event->calendar->name }}</td>
<td>{{ $event->user->name }}</td>
<td>
<a class="btn btn-sm btn-info" href="{{ route('events.show', $event->id) }}"><i class="fas fa-eye"></i> Show</a>
Expand Down

0 comments on commit 8c9ab04

Please sign in to comment.