@extends('layouts.admin') @section('title', 'Enquiry Details') @section('content_header')

Enquiry Details

@stop @section('content')

Enquiry Information

First Name: {{ $enquiry->first_name }}
Last Name: {{ $enquiry->last_name }}
Full Name: {{ $enquiry->full_name }}
Business Email: {{ $enquiry->business_email }}
Phone Number: {{ $enquiry->phone_number }}
Company: {{ $enquiry->company ?? 'N/A' }}
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
@csrf @method('DELETE')
@endsection