@extends('layouts.app') @section('title', $lead->lead_number) @section('breadcrumb')Leads {{ $lead->lead_number }}@endsection @section('content')
{{ $lead->description }}
{{ $lead->notes }}
No appointments yet.
| # | Appt. With | Date & Time | Designer | Fee | Location | Both Avail. | Note |
|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $appt->appointment_with ?? '—' }} |
@if($appt->appointment_date)
{{ $appt->appointment_date->format('d M Y') }}
@if($appt->appointment_time)
{{ \Carbon\Carbon::createFromFormat('H:i:s', $appt->appointment_time)->format('h:i A') }}
@endif
@else
—
@endif
|
{{ $appt->designer?->name ?? '—' }} | @if($appt->appointment_fee) ${{ number_format($appt->appointment_fee, 2) }} @else — @endif | {{ $appt->appointment_location ?? '—' }} | @if($appt->both_available === 'Yes') Yes @else No @endif | {{ Str::limit($appt->note, 50) ?? '—' }} |
No follow-ups yet.
| # | Type | Date | Time | Feedback |
|---|---|---|---|---|
| {{ $i + 1 }} | {{ $fu->follow_up_type }} | {{ $fu->follow_up_date?->format('d M Y') ?? '—' }} | @if($fu->follow_up_time) {{ \Carbon\Carbon::createFromFormat('H:i:s', $fu->follow_up_time)->format('h:i A') }} @else — @endif | {{ Str::limit($fu->feedback, 80) ?? '—' }} |