@extends($_layout.'single') @section('title', 'Giỏ hàng') @include($_lib.'register-meta') @section('content')

Giỏ hàng

@if ($cart && $cart->details && count($cart->details))
@foreach ($cart->details as $item) @endforeach
Thông tin sản phẩm Đơn giá Số lượng Thành tiềnL
{{$item->product_name}} @if ($item->attributes && count($item->attributes)) @foreach ($item->attributes as $attr)

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

@endforeach @endif
{{$item->getPriceFormat()}}
{{$item->getTotalFormat()}}
@else

Không có sản phẩm nào trong giỏ hàng

@endif
@endsection