@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:s') }} |
Updated: |
{{ $enquiry->updated_at->format('M d, Y H:i:s') }} |
@if($enquiry->remark)
Remark:
{{ $enquiry->remark }}
@endif
@endsection