@extends($_layout.'single') @include($_lib.'register-meta') @section('page_after')
@if ($order && $order->details && count($order->details))
Hóa đơn
Mã đơn hàng {{ $order->id }}
Trạng thái {{ $order->getStatusLabel() }}
Thanh toán {{ $order->getPaymentMethodText() }}
Tạm tính {{ get_currency_format($order->sub_total) }}
Phí giao hàng {{ get_currency_format($order->shipping_fee) }}
Thuế {{ get_currency_format($order->tax) }}
Tổng tiền {{ get_currency_format($order->total_money) }}
@if ($order->isPaymentMethod('transfer') && $order->isStatus('pending-payment')) Thanh toán @endif @if ($order->canCancel()) Hủy @endif
Giao hàng
Họ và tên {{ $order->shipping->name }}
Số diện thoại {{ $order->shipping->phone_number }}
Email {{ $order->shipping->email }}
Địa chỉ giao hàng {{ $order->shipping->getFullAddressText() }}
Chi tiết
@foreach ($order->details as $item) @endforeach
Ảnh Sản phẩm Đơn giá Số lượng Thành tiền
{{ $item->product_name }} {{ $item->product_name }} @if ($item->attributes && count($item->attributes)) @foreach ($item->attributes as $attr)

{{ $attr->label ?? $attr->name }}: {{ $attr->text }}

@endforeach @endif
{{ $item->getPriceFormat() }}
@if ($item->product_type == 'digital' && $order->is('completed')) @if ($download = $helper->getMetadata('product', $item->product_id, 'download_url')) Tải về máy @endif @else {{ $item->quantity }} @endif
{{ $item->getTotalFormat() }}
@else
Không có sản phẩm nào trong giỏ hàng
@endif
@endsection