@extends('admin.layout') @section('header_actions') Back @endsection @section('content')

Enquiry Information

Name:
{{ $followup->enquiry->full_name }}

Date:
{{ $followup->enquiry->date }}

Mobile:
{{ $followup->enquiry->mobile_no ?? '-' }}

Status:
@php $statusColor = [ 'open' => 'warning', 'follow_up' => 'primary', 'converted' => 'info', 'not_interested' => 'danger', 'closed' => 'secondary', 'pending' => 'warning', 'completed' => 'primary', 'rejected' => 'danger' ][$followup->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[$followup->enquiry->status] ?? ucfirst(str_replace('_', ' ', $followup->enquiry->status)) }}

Followup Information

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@php $followupStatus = old('followup_status', $followup->followup_status); @endphp
@endsection