Xác nhận đơn hàng
@if($cartItems->isEmpty())Không có sản phẩm nào trong giỏ hàng.
@else {{-- Card bao ngoài --}}
{{-- Danh sách sản phẩm --}}
@endif
@foreach($cartItems as $item)
@endforeach
{{-- Phần chọn thanh toán --}}
@php
$unitPrice = $item->product->is_sale ? $item->product->sale_price : $item->product->price;
@endphp
{{ $item->product->product_name }}
Số lượng: {{ $item->quantity }}
Đơn giá: {{ number_format($unitPrice * $item->quantity) }}₫
Thành tiền: {{ number_format($unitPrice * $item->quantity) }}₫
Tạm tính: {{ number_format($total, 0, ',', '.') }}₫
Khuyến mãi: 0₫
Tổng cộng: {{ number_format($total, 0, ',', '.') }}₫