| كلفة الطلب |
{{ number_format($order->total_price - $order->delivery_fees + $order->coupon_discount, 2) }} ر.س |
@if ($order->tip)
| الإكرامية |
{{ number_format($order->tip, 2) }} ر.س |
@endif
@if ($order->financial->store_coupon_discount)
| خصم المتجر |
{{ number_format($order->financial->store_coupon_discount, 2) }} ر.س |
@endif
@if ($order->financial->platform_coupon_discount)
| خصم التطبيق |
{{ number_format($order->financial->platform_coupon_discount, 2) }} ر.س |
@endif
| المبلغ الإجمالي |
{{ number_format($order->total_price - $order->delivery_fees, 2) }} ر.س |
| طريقة الدفع |
{{ __("global.payment_methods.$order->payment_method") }} |