@extends('front.template.header') @section('content')

On {{ $booking->status}}!

{{ $booking->booking_id}} @if ($booking->status === 'Completed')

ID Request on {{ $booking->status }}.

@else

ID Request on {{ $booking->status }}, soon will get another update.

@endif


Service @php $service = \App\Models\Service::find($booking->service_id); $serviceName = $service ? $service->title : 'N/A'; @endphp {{ $serviceName }}
@php $totalPrice = $booking->total ?? 0; // Total price from booking @endphp
Subtotal AED {{ number_format($totalPrice ?? 0, 2) }}
Total AED {{ number_format($totalPrice ?? 0, 2) }}
@endsection