HÓA ĐƠN
|
Mã đơn hàng: HĐ{{ $order->id }}
Ngày đặt hàng: {{ $order->created_at->format('d/m/Y H:i:s') }}
Phương thức thanh toán: {{ $order->payment_method }}
|
|
Tên khách hàng: {{ $order->ho_ten == null ? $order->User->ho_ten : $order->ho_ten }}
Số điện thoại: {{ $order->so_dien_thoai == null ? $order->User->so_dien_thoai : $order->so_dien_thoai }}
Địa chỉ: {{ $order->dia_chi }}, {{ $order->Wards->name }}, {{ $order->District->name }}, {{ $order->Province->name }}
|
|
Sản phẩm |
Số lượng |
Đơn giá |
Thành tiền |
@foreach($order->OrderDetail as $detail)
{{ $detail->Product->ten_san_pham }} |
{{ $detail->so_luong }} |
{{ number_format($detail->gia, 0, ',', '.') }} VND |
{{ number_format($detail->Product->don_gia * $detail->so_luong, 0, ',', '.') }} VND |
@endforeach
|
Tổng cộng: {{ number_format($order->tong_tien, 0, ',', '.') }} VND |