Reservation Bill
Reservation Number: #{{ $order->number }}
Store: {{ $order->branch->spa->title }}
Reservation Date & Time: {{ $order->created_at->format('Y-m-d, H:i') }}
Items
@foreach ($order->details->options ?? [] as $option) @foreach ($option->choices as $choice) @if ($choice->price) @endif @endforeach @endforeach
{{ $order->sitem_title }} {{ $order->sitem_quantity }} {{ number_format($order->sitem_price * $order->sitem_quantity, 2) }} SAR
• {{ $option->title->en }} - {{ $choice->title->en }} @if ($choice->quantity) ({{ $choice->quantity ?? 1 }}) @endif + {{ number_format($choice->price * ($choice->quantity ?? 1) * $order->sitem_quantity, 2) }} SAR
Summary
@if ($order->financial->store_coupon_discount) @endif @if ($order->financial->platform_coupon_discount) @endif
Reservation Cost {{ number_format($order->total_price - $order->delivery_fees + $order->coupon_discount, 2) }} SAR
Store discount {{ number_format($order->financial->store_coupon_discount, 2) }} SAR
Application discount {{ number_format($order->financial->platform_coupon_discount, 2) }} SAR
Total Amount {{ number_format($order->total_price - $order->delivery_fees, 2) }} SAR
Payment Method {{ __("global.payment_methods.$order->payment_method") }}