@extends($_layout . 'master') @include($_lib . 'register-meta') @section('content')
@if ($order && $order->details && count($order->details))
@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