অর্ডার {{ $order->order_number }}

@if (session('status'))
{{ session('status') }}
@endif

অর্ডার করা পণ্য

@foreach ($order->items as $item)
@if ($item->product?->primaryImageUrl()) {{ $item->product->name }} @endif
{{ $item->product?->displayName() ?? $item->product_name }}
{{ __('অর্ডার আইটেম') }}
পরিমাণ: {{ $item->quantity }}
{{ $item->formattedUnitPrice() }}
{{ $item->formattedSubtotal() }}
@if ($order->status === \App\Models\Order::STATUS_DELIVERED)
@if ($item->review)

আপনার রিভিউ

{{ $item->review->body }}

{{ $item->review->statusLabel() }}
@else
@csrf
@endif
@endif
@endforeach