@extends('layouts.app') @section('content')
Enquiries
@if($contacts->count()) @foreach($contacts as $contact) @endforeach
# Name Email Page Subject Message Date
{{ $loop->iteration }} {{ $contact->name }} {{ $contact->email }} {{ $contact->page_name ?? '-' }} {{ $contact->subject }} {!! nl2br(e(\Illuminate\Support\Str::limit($contact->message,150))) !!} {{ $contact->created_at?->format('d M Y') }}
{{ $contact->created_at?->format('h:i A') }}
@else
No Enquiries Found

Contact enquiries will appear here.

@endif
@endsection