Order Summary
Order Number: #{{ $order->number }}
Charity: {{ $order->branch->charity->title }}
Order Date & Time: {{ $order->created_at->format('Y-m-d, H:i') }}
Item
@foreach ($order->citems_pivot as $citem) @foreach ($citem->details->options ?? [] as $option) @foreach ($option->choices as $choice) @endforeach @endforeach @if (!$loop->last) @endif @endforeach
{{ $citem->title }} ({{ $citem->quantity }}) {{ number_format($citem->price * $citem->quantity, 2) }} SAR
• {{ $option->title->en }} - {{ $choice->title->en }} @if ($choice->quantity) ({{ $choice->quantity }}) @endif @if ($choice->price > 0) + {{ number_format($choice->price * ($choice->quantity ?? 1) * $citem->quantity, 2) }} SAR @endif
Summary
@if ($order->financial->store_coupon_discount) @endif @if ($order->financial->platform_coupon_discount) @endif
Products Cost {{ number_format($order->total_price + $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, 2) }} SAR
Payment Method {{ __("global.payment_methods.$order->payment_method") }}