@extends('layouts.client') @section('title') {{$title}} @endsection @section('stylesheetAccount') @endsection @section('content-clients')

Thông tin đơn hàng

Mã đơn hàng: {{$order->id}}

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

Tổng tiền: {{number_format($order->tong_tien,0,',','.')}} VNĐ

Tên người nhận: {{$order->ho_ten}}

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

Email: {{$order->email}}

Địa chỉ giao hàng: {{$order->dia_chi}}, {{$order->wards->name}}, {{$order->district->name}}, {{$order->province->name}}

Phương thức thanh toán: {{$order->phuongthuc}}

Trạng thái đơn hàng: {{$order->trang_thai}}

Sản phẩm trong đơn hàng

    @foreach($order->OrderDetail as $product)
  • {{$product->Product->ten_san_pham}}
    Số lượng: {{$product->so_luong}} {{number_format($product->gia, 0, ',', '.')}} VNĐ
  • @endforeach

Gửi yêu cầu hỗ trợ đơn hàng #{{$order->id}} của Khách hàng @if($order->ho_ten == null) {{$order->User->ho_ten}} @else {{$order->ho_ten}} @endif

@csrf
@error('noi_dung') {{$message}} @enderror
@endsection