@extends($_layout.'master') {{-- @section('title', $account->formConfig->title) --}} @include($_lib.'register-meta') @section('page.header.show', 'breadcrumb') @section('content')
@csrf

Đơn hàng

Sản phẩm Thành tiền

@foreach ($order->details as $item) @endforeach
{{$item->product_name}}
@if ($item->attributes && count($item->attributes))
@foreach ($item->attributes as $attr)
{{$attr->label??$attr->name}}: {{$attr->text}}
@endforeach
@endif
Số lượng: {{$item->quantity}}
{{$item->getTotalFormat()}}

Tạm tính {{$helper->getCurrencyFormat($order->sub_total)}}

Phí giao hàng {{$helper->getCurrencyFormat($order->shipping_fee)}}

Thuế VAT {{$helper->getCurrencyFormat($order->tax)}}

Tổng thành tiền {{$helper->getCurrencyFormat($order->total_money)}}

Thanh toán

@include($_lib.'payments.form')

@endsection