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

{{ $event->title }} Event Participants ({{ $eventParticipants->total() }})

filter) value="{{ $request->filter }}" @endif>
email) value="{{ $request->email }}" @endif>
@if (count($eventParticipants) > 0) @php $i = $eventParticipants->perPage() * ($eventParticipants->currentPage() - 1) + 1; @endphp @foreach ($eventParticipants as $eventParticipant) @php $user = $eventParticipant->user; @endphp @endforeach @else @endif
Sr. No Name Email Contact Date Send Message
{{ $i++ }} {{ $user->name ?? '-' }} {{ $user->email ?? '-' }} {{ $user->contact ?? '-' }} {{ $event->created_at ? getTimezoneDateTime($event->created_at, 'd-m-Y | h:i A') : '-' }}
No Data Found
{{ $eventParticipants->appends(Request::all())->links() }}
@endsection @section('js') @endsection