فاتورة الطلب
رقم الطلب: #{{ $order->number }}
الجمعية: {{ $order->branch->charity->title }}
تاريخ ووقت الطلب: {{ $order->created_at->format('Y-m-d, H:i') }}
العناصر
@foreach ($order->citems_pivot as $citem) @endforeach
{{ $citem->title }} ({{ $citem->quantity }}) {{ number_format($citem->price, 2) }} ر.س
الملخص
@if ($order->is_delivery) @endif @if ($order->tip) @endif
كلفة الطلب {{ number_format($order->total_price - $order->delivery_fees + $order->coupon_discount, 2) }} ر.س
رسوم التوصيل {{ number_format($order->delivery_fees, 2) }} ر.س
الإكرامية {{ number_format($order->tip, 2) }} ر.س
خصم {{ number_format($order->coupon_discount, 2) }} ر.س
المبلغ الإجمالي {{ number_format($order->total_price, 2) }} ر.س
طريقة الدفع {{ __("global.payment_methods.$order->payment_method") }}