{{ strtolower($isAttended) == 'true' ? 'Event Attendance Record' : 'Event Registration Record' }}

@if ($isAttended == 'true') @endif @foreach ($eventParticipants as $index => $eventParticipant) @if ($isAttended == 'true') @endif @endforeach
# Event Name Company Name Name Gender Designation Email Address Phone NumberAttendance
{{ $index + 1 }} {{ ucfirst($eventParticipant->event->name ?? '-') }} {{ ucfirst($eventParticipant->company_name ?? '-') }} {{ ucfirst($eventParticipant->name ?? '-') }} {{ ucfirst($eventParticipant->gender ?? '-') }} {{ ucfirst($eventParticipant->designation ?? '-') }} {{ $eventParticipant->email ?? '-'}} {{ formatPhoneNumber($eventParticipant->phone_no) ?? '-'}}{{ ucfirst($eventParticipant->attendance_status ?? '-') }}