@extends('admin-layouts.vertical', ['title' => 'Contact Us']) @section('content')

Contact Us

{{-- --}}
{{-- Display Success Message --}} @if (session('success')) @endif {{-- Display Error Messages --}} @if ($errors->any()) @endif
@forelse ($contactUs as $contact) @empty @endforelse
S.No Name Subject Email Phone Message Status Date Actions
{{ $loop->iteration }} {{ $contact->name }} {{ $contact->subject }} {{ $contact->email }} {{ $contact->phone ?? 'N/A' }} {{ Str::limit($contact->message, 50) }} @switch($contact->status) @case('pending') Pending @break @case('replied') Replied @break @case('resolved') Resolved @break @default Unknown @endswitch {{ $contact->created_at->format('d-m-Y') }}
Edit
@csrf @method('DELETE')
No contact entries found.
@endsection