@extends('components.app-layout') @section('title', $event->title) @section('subtitle', 'Event Details') @section('content')
Total Attendance
{{ $event->attendances->count() }}
Checked In
{{ $event->attendances->whereNotNull('checked_in_at')->count() }}
QR Scans
{{ $event->attendances->where('attendance_method', 'qr_code')->count() }}
Available Spots
@if($event->max_attendees) {{ $event->max_attendees - $event->attendances->count() }} @else ∞ @endif
No description provided.
@endif{{ $attendance->member->full_name }}
@if($attendance->checked_in_at) Checked in {{ $attendance->checked_in_at->format('g:i A') }} @else Registered @endif
{{ str_replace('_', ' ', $event->event_type) }}
{{ $event->ministry->name }}
{{ $event->organizer->full_name }}
{{ $event->max_attendees }}
₵{{ number_format($event->registration_fee, 2) }}
{{ $event->registration_deadline->format('M j, Y g:i A') }}