@extends('layouts.master') @section('css') @endsection @section('content')

{{ $association->name }} Events ({{ $events->total() }})

title) value="{{ $request->title }}" @endif>
{{-- --}} @if (count($events) > 0) @php $i = $events->perPage() * ($events->currentPage() - 1) + 1; @endphp @foreach ($events as $event) {{-- --}} @endforeach @else @endif
Sr. No Title Event Code Date Banner Type Registrations StatusParticipantsAction
{{ $i++ }} {{ $event->title ?? '' }} {{ $event->code ?? '' }} {{ $event->date ? getTimezoneDateTime($event->date, 'd-m-Y') : '-' }} @if ($event->banner) @endif @if ($event->type == App\Models\Event::CONFERENCE) Conference @elseif($event->type == App\Models\Event::WEBINAR) Webinar @elseif($event->type == App\Models\Event::OTHERS) Others @endif {{ $event->eventRegistrations()->count() }} View Participants
No Data Found
{{ $events->appends(Request::all())->links() }}
@endsection @section('js') @endsection