@extends('layouts.admin') @section('title', 'Visitors') @section('page-title', 'Visitors') @section('page-subtitle', 'Manage church visitors') @section('content')
Total Visitors
{{ $stats['total'] }}
This Month
{{ $stats['new_this_month'] }}
Awaiting Follow-up
{{ $stats['awaiting_follow_up'] }}
Converted
{{ $stats['converted'] }}
| Visitor | Contact | Visit Date | Status | Source | Actions |
|---|---|---|---|---|---|
|
{{ substr($visitor->first_name, 0, 1) }}{{ substr($visitor->last_name, 0, 1) }}
{{ $visitor->full_name }} {{ ucfirst($visitor->visit_type) }} |
{{ $visitor->email ?? 'No email' }} {{ $visitor->phone ?? '' }} |
{{ $visitor->date_of_visit->format('M d, Y') }} | {{ ucfirst(str_replace('_', ' ', $visitor->status)) }} | {{ Str::limit($visitor->how_heard_about_us ?? 'N/A', 20) }} | |
|
No visitors found |
|||||