Order Summary
Order Number: #{{ $order->number }}
Charity: {{ $order->branch->charity->title }}
Order Date & Time: {{ $order->created_at->format('Y-m-d, H:i') }}
Items
@foreach ($order->citems_pivot as $citem) @endforeach
{{ $citem->title }} ({{ $citem->quantity }}) {{ number_format($citem->price, 2) }} SAR
Summary
@if ($order->tip) @endif @if ($order->financial->store_coupon_discount) @endif @if ($order->financial->platform_coupon_discount) @endif
Order Cost {{ number_format($order->total_price - $order->delivery_fees + $order->coupon_discount, 2) }} SAR
Tip {{ number_format($order->tip, 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") }}