| Order Cost |
{{ number_format($order->total_price - $order->delivery_fees + $order->coupon_discount, 2) }} SAR |
@if ($order->tip)
| Tip |
{{ number_format($order->tip, 2) }} SAR |
@endif
@if ($order->financial->store_coupon_discount)
| Store discount |
{{ number_format($order->financial->store_coupon_discount, 2) }} SAR |
@endif
@if ($order->financial->platform_coupon_discount)
| Application discount |
{{ number_format($order->financial->platform_coupon_discount, 2) }} SAR |
@endif
| Total Amount |
{{ number_format($order->total_price - $order->delivery_fees, 2) }} SAR |
| Payment Method |
{{ __("global.payment_methods.$order->payment_method") }} |