@extends('adminlte::page') @section('title', 'Events Calendar') @section('content_header')

Events Calendar

@stop @section('content')
{{-- Top Buttons --}} {{-- Event Summary --}}
@foreach([ 'total' => ['label' => 'Total Events', 'color' => 'info', 'icon' => 'fas fa-calendar-alt'], 'academic' => ['label' => 'Academic', 'color' => 'success', 'icon' => 'fas fa-book'], 'sport' => ['label' => 'Sports', 'color' => 'warning', 'icon' => 'fas fa-football-ball'], 'cultural' => ['label' => 'Cultural', 'color' => 'primary', 'icon' => 'fas fa-theater-masks'], 'holiday' => ['label' => 'Holidays', 'color' => 'danger', 'icon' => 'fas fa-umbrella-beach'], 'other' => ['label' => 'Other', 'color' => 'secondary', 'icon' => 'fas fa-star'] ] as $key => $data)

{{ $summary[$key] ?? 0 }}

{{ $data['label'] }}

@endforeach
{{-- Filters --}}
{{-- Flash Messages --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Events Table --}} @if($events->count()) @foreach($events as $event) @endforeach
Title Department Type Start Date End Date Description Actions
{{ $event->title }} {{ $event->department?->name ?? 'All' }} {{ ucfirst($event->type) }} {{ $event->start_date->format('Y-m-d') }} {{ $event->end_date->format('Y-m-d') }} {{ $event->description }} Edit
@csrf @method('DELETE')
{{ $events->links() }} @else

No events found.

@endif
@stop