@extends('admin.layout') @section('header_actions') Back @endsection @section('content')
Name:
{{ $enquiry->full_name }}
Date:
{{ $enquiry->date }}
Mobile:
{{ $enquiry->mobile_no ?? '-' }}
Status:
@php
$statusColor = [
'open' => 'warning',
'follow_up' => 'primary',
'converted' => 'info',
'not_interested' => 'danger',
'closed' => 'secondary',
'pending' => 'warning',
'completed' => 'primary',
'rejected' => 'danger'
][$enquiry->status] ?? 'secondary';
$statusLabels = [
'open' => 'Open',
'follow_up' => 'Follow-up',
'converted' => 'Converted',
'not_interested' => 'Not Interested',
'closed' => 'Closed',
'pending' => 'Open',
'completed' => 'Follow-up',
'rejected' => 'Not Interested'
];
@endphp
{{ $statusLabels[$enquiry->status] ?? ucfirst(str_replace('_', ' ', $enquiry->status)) }}