{{-- filepath: resources/views/content_management/partials/events_table.blade.php --}}
| ID {{-- Show the directional icon if this is the sorted column, otherwise show a neutral icon. --}} @if ($sortColumn === 'id') @else @endif | Title @if ($sortColumn === 'title') @else @endif | Description @if ($sortColumn === 'desc') @else @endif | Image | Date @if ($sortColumn === 'date') @else @endif | Active @if ($sortColumn === 'active') @else @endif | Actions |
|---|---|---|---|---|---|---|
| {{ $event->id }} | {{ $event->title }} | {{ Str::limit($event->desc, 70) }} |
@if ($event->image)
|
{{ $event->date->format('d/m/Y') }} | ||
| No events found. | ||||||