Export CSV

Emergency Evacuation Report

{{ $organization->name }} · Generated {{ now()->format('M j, Y g:i A') }} · {{ $occupancy->count() + $staffOnSite->count() }} occupants

Visitors ({{ $occupancy->count() }})

@forelse ($occupancy as $visit) @empty @endforelse
Name Type Host Branch Checked in Phone
{{ $visit->visitor->full_name }} {{ ucfirst(str_replace('_', ' ', $visit->visitor_type)) }} {{ $visit->host?->name ?? '—' }} {{ $visit->branch?->name ?? '—' }} {{ $visit->checked_in_at?->format('g:i A') }} {{ $visit->visitor->phone ?? '—' }}
No visitors on site.

Staff ({{ $staffOnSite->count() }})

@forelse ($staffOnSite as $presence) @empty @endforelse
Name Department Branch Signed in Status Phone
{{ $presence->employee->full_name }} {{ $presence->employee->department ?? '—' }} {{ $presence->branch?->name ?? $presence->employee->branch?->name ?? '—' }} {{ $presence->signed_in_at?->format('g:i A') ?? '—' }} {{ config('frontdesk.employee_presence_statuses.'.$presence->status, $presence->status) }} @if ($presence->destination) · {{ $presence->destination }} @endif {{ $presence->employee->phone ?? '—' }}
No staff on site.