@extends('layouts.admin') @section('content')
@include('elements.admin-breadcrumb')
{{-- --}} {{-- --}} {{-- --}} {{-- --}}
Clinic / Company Name{{ $enquiry->clinic_name ?? '-' }}
Type of Practice{{ $enquiry->type_of_practice ?? '-' }}
Name{{ $enquiry->name ?? '-' }}
Email{{ $enquiry->email ?? '-' }}
Contact No{{ $enquiry->contact_no ?? '-' }}
City{{ $enquiry->city ?? '-' }}
Website URL{{ $enquiry->website_url ?? '-' }}
Role / Designation{{ $enquiry->role ?? '-' }}
Best Time to Reach{{ $enquiry->best_time_to_reach_you ?? '-' }}
Roles You Need to Fill{{ $enquiry->role_you_need_to_fill ?? '-' }}
People Needed{{ $enquiry->people_needed ?? '-' }}
How Soon Needed{{ $enquiry->how_soon_do_you_need_them ?? '-' }}
Anything Specific{{ $enquiry->anything_specific ?? '-' }}
Agreement{{ (int) $enquiry->agreement === 1 ? 'Yes' : 'No' }}
Created At{{ optional($enquiry->created_at)->format('d M Y h:i A') ?? '-' }}
@endsection