@extends('layouts.admin')
@section('title', 'Enquiry Details')
@section('content_header')
Enquiry Details
@stop
@section('content')
| Country: |
{{ $enquiry->country ?? 'N/A' }} |
| State: |
{{ $enquiry->state ?? 'N/A' }} |
| City: |
{{ $enquiry->city ?? 'N/A' }} |
| Marketing Consent: |
{{ $enquiry->marketing_consent ? 'Yes' : 'No' }}
|
| Created: |
{{ $enquiry->created_at->format('M d, Y h:i A') }} |
| Updated: |
{{ $enquiry->updated_at->format('M d, Y h:i A') }} |
@if($enquiry->remark)
Remark:
{{ $enquiry->remark }}
@endif
@endsection