ملخص الطلب
رقم الطلب: #{{ $order->number }}
المتجر: {{ $order->branch->service->title }}
تاريخ و وقت الطلب: {{ $order->created_at->format('Y-m-d, H:i') }}
المنتجات
@foreach ($order->items_pivot as $item) @foreach ($item->details->options ?? [] as $option) @foreach ($option->choices as $choice) @if ($choice->price) @endif @endforeach @endforeach @if (!$loop->last) @endif @endforeach
{{ $item->title }} ({{ $item->quantity }}) {{ number_format($item->price * $item->quantity, 2) }} ر.س
• {{ $option->title->ar }} - {{ $choice->title->ar }} @if ($choice->quantity) ({{ $choice->quantity ?? 1 }}) @endif + {{ number_format($choice->price * ($choice->quantity ?? 1) * $item->quantity, 2) }} ر.س
الملخص
@if ($order->tip) @endif @if ($order->financial->store_coupon_discount) @endif @if ($order->financial->platform_coupon_discount) @endif
تكلفة المنتجات {{ number_format($order->total_price - $order->delivery_fees + $order->coupon_discount - $order->tip, 2) }} ر.س
الإكرامية {{ number_format($order->tip, 2) }} ر.س
خصم المتجر {{ number_format($order->financial->store_coupon_discount, 2) }} ر.س
خصم التطبيق {{ number_format($order->financial->platform_coupon_discount, 2) }} ر.س
المبلغ الإجمالي {{ number_format($order->total_price - $order->delivery_fees, 2) }} ر.س
طريقة الدفع {{ __("global.payment_methods.$order->payment_method") }}