@extends('layouts.admin-simple') @section('title', 'Contact Inquiry Details') @section('page-title', 'Contact Inquiry Details') @section('breadcrumb') @endsection @section('content')
Contact Information
{{ $contactInquiry->name }}
{{ $contactInquiry->phone ?: 'Not provided' }}
{{ $contactInquiry->company ?: 'Not provided' }}
{{ $contactInquiry->subject_label }}
{{ $contactInquiry->created_at->format('M d, Y h:i A') }}
{{ $contactInquiry->status_label }}
@if($contactInquiry->responded_at)
{{ $contactInquiry->responded_at->format('M d, Y h:i A') }}
@endif
@if($contactInquiry->responded_at && $contactInquiry->respondedBy)
{{ $contactInquiry->respondedBy->name }}
@endif
{{ $contactInquiry->message }}
@if($contactInquiry->admin_notes)
{{ $contactInquiry->admin_notes }}
@endif
Update Status
@csrf @method('PATCH')
Internal notes about this inquiry (not visible to the inquirer)
Back to List
Quick Actions
Send Email @if($contactInquiry->phone) Call @endif @if($contactInquiry->status != 'responded')
@csrf @method('PATCH')
@endif @if($contactInquiry->status != 'closed')
@csrf @method('PATCH')
@endif
Technical Information
{{ $contactInquiry->ip_address ?: 'N/A' }}
{{ $contactInquiry->user_agent ?: 'N/A' }}
@endsection