Host portal

{{ $host->name }} · {{ $organization->name }}

@csrf {{ $host->is_available ? 'Mark unavailable' : 'Mark available' }}
Pre-register visitor
@if ($pending->isNotEmpty())

Awaiting your approval

@foreach ($pending as $visit)

{{ $visit->visitor->full_name }}

{{ str_replace('_', ' ', $visit->visitor_type) }} · {{ $visit->purpose ?: 'No purpose given' }}

@csrf
@endforeach
@endif

Upcoming visits

@forelse ($upcoming as $visit) @empty @endforelse
Visitor When Status
{{ $visit->visitor->full_name }} {{ $visit->scheduled_at?->format('M j, g:i A') ?? '—' }} {{ str_replace('_', ' ', $visit->status) }}
No upcoming visits.

Recent history

@forelse ($recent as $visit) @empty @endforelse
Visitor Status Updated
{{ $visit->visitor->full_name }} {{ str_replace('_', ' ', $visit->status) }} {{ $visit->updated_at->diffForHumans() }}
No recent visits.