@extends('layouts.store') @section('title', $order->order_number) @section('content')
Order

{{ $order->order_number }}

Back Track Invoice
@if (session('status'))

{{ session('status') }}

@endif

Items

@foreach ($order->items as $item) @endforeach
ProductQtyTotal
{{ $item->product_name }} @if ($item->variant_label) {{ $item->variant_label }} @endif {{ $item->quantity }} {{ \App\Models\SiteSetting::formatPrice($item->line_total) }}

Status

@if ($order->paymentScreenshotUrl()) @endif
@if ($order->canReceiveFeedback())

Product Feedback

@if ($errors->any())

{{ $errors->first() }}

@endif
@foreach ($order->items as $item) @php $review = $reviewsByProduct->get($item->product_id); $complaint = $complaintsByProduct->get($item->product_id); @endphp @endforeach
@endif @endsection