@extends('admin.layouts.app') @section('title', 'Contact Messages') @section('content')

Contact Messages

View and respond to customer inquiries

@forelse($contacts as $contact) @empty @endforelse
From Subject Status Date Actions

{{ $contact->name }}

{{ $contact->email }}

{{ $contact->subject ?? '-' }} @if($contact->status == 'unread') Unread @elseif($contact->status == 'replied') Replied @else Read @endif {{ $contact->created_at->format('M d, Y H:i') }}
@csrf @method('DELETE')

No messages found

@if($contacts->hasPages())
{{ $contacts->links() }}
@endif
@endsection