@extends('layouts.admin-simple') @section('title', 'Investor Inquiry Details') @section('page-title', 'Investor Inquiry Details') @section('breadcrumb') @endsection @section('content')
Inquiry Information
{{ $inquiry->full_name }}
{{ $inquiry->phone ?: 'Not provided' }}
{{ $inquiry->inquiry_type_label }}
{{ $inquiry->created_at->format('M d, Y h:i A') }}
{{ $inquiry->status_label }}
@if($inquiry->responded_at)
{{ $inquiry->responded_at->format('M d, Y h:i A') }}
{{ $inquiry->respondedBy ? $inquiry->respondedBy->name : 'N/A' }}
@endif
{{ $inquiry->message }}
@if($inquiry->admin_notes)
{{ $inquiry->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($inquiry->phone) Call @endif @if($inquiry->status != 'responded')
@csrf @method('PATCH')
@endif @if($inquiry->status != 'closed')
@csrf @method('PATCH')
@endif
Technical Information
{{ $inquiry->ip_address ?: 'N/A' }}
{{ $inquiry->user_agent ?: 'N/A' }}
@endsection