@extends($_layout.'master') @include($_lib.'register-meta') @section('content')
@if ($order && $order->details && count($order->details))

Hóa đơn

  • Mã đơn hàng
    {{ $order->code }}
  • 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) }}
  • Giảm giá khuyến mại
    {{ get_currency_format($order->promo_total) }}
  • Tổng tiền
    {{ get_currency_format($order->total_money) }}
@if ($order->isPaymentMethod('transfer') && $order->isPaymentPending() && !$order->is('canceled')) Thanh toán @endif @if ($order->canCancel()) Hủy @endif

Giao hàng

  • Họ và tên
    {{ $order->shipping->name }}
  • Số điện thoại
    {{ $order->shipping->phone_number }}
  • Email
    {{ $order->shipping->email }}
  • Địa chỉ giao hàng
    {{ $order->shipping->getFullAddressText() }}
@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