@extends('customer.customer_overview.layout_customer') @section('content-customer')

Chi tiết {{ $order -> name }}

Tên khách hàng: {{ $order -> user -> name }}

Số điện thoại: {{ $order -> user -> phone }}

Email: {{ $order -> user -> email }}

Địa chỉ: {{ $order -> user -> address }}

Ngày đặt hàng: {{ $order -> created_at }}

@foreach ($order -> invoiceDetails as $key => $detail) @endforeach
STT Tên sản phẩm Ảnh Giá tiền Số lượng Thành tiền
{{ $count }} {{ $detail -> product -> name }} {{ $detail -> product -> name }} {{ number_format($detail -> product -> price) }}đ {{ $detail -> quantity }} {{ number_format($detail -> total_price) }}đ
Quay lại

Tạm tính: {{ number_format($total_price) }}đ

Phí vận chuyển:10.000đ

TỔNG TIỀN: {{ number_format($total_price + 10000) }}đ

@endsection