@extends('backend.layouts.main') @section('title') View Contact Inquiry @endsection @section('content')

Contact Inquiry Details: {{ $contactUs->full_name }}

Basic Information

ID:
{{ $contactUs->id }}
Full Name:
{{ $contactUs->full_name }}
Email:
{{ $contactUs->email }}
Phone Number:
{{ $contactUs->phone_number }}
Service Interested In:
{{ $contactUs->service_interested_in ?? 'N/A' }}

Additional Details

Status:
@if ($contactUs->is_contacted) Contacted @else Pending @endif
@csrf
Created At:
{{ $contactUs->created_at->format('M d, Y H:i') }}
Updated At:
{{ $contactUs->updated_at->format('M d, Y H:i') }}

Message

{{ $contactUs->message ?? 'No message provided.' }}
@endsection