@extends('layouts.app') @section('content')

Contact Submissions

@forelse($contacts as $contact) @empty @endforelse
# Name Email Phone Property Name / Visit Page
{{ $loop->iteration + ($contacts->currentPage() - 1) * $contacts->perPage() }} {{ $contact->name }} {{ $contact->email }} {{ $contact->number }} @if (!$contact->matched_property) {{ $contact->property_name ?? 'General Inquiry' }} @else {{ $contact->matched_property->property_name }} @endif
No contact submissions found.
{{ $contacts->links('vendor.pagination.tailwind') }}
@endsection