@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @php $breadcrumbItems = [ ['label' => 'Đơn hàng', 'url' => route('show-order.index')], ['label' => 'Thông tin đơn hàng'] ]; @endphp @section('content') @include('layouts.header')
| # | Tên sản phẩm | Giá | Số lượng | Màu Sắc | Kích thước | Thành tiền |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->product->product_name }} | {{ number_format($item->price, 0, ',', '.') }} đ | {{ $item->quantity }} | {{ $item->color ?? 'Không rõ' }} | {{ $item->size ?? 'Không rõ' }} | {{ number_format($subtotal, 0, ',', '.') }} đ |
| Tổng cộng: | {{ number_format($total, 0, ',', '.') }} đ | |||||