@extends('layouts.admin') @section('title') {{$title}} @endsection @section('content-admin')
Mã Khiếu Nại: {{ $complaint->id }}
Nội Dung: {{ $complaint->noi_dung }}
Trạng Thái: @if($complaint->trang_thai == 0) Chưa xử lý @elseif($complaint->trang_thai == 1) Đang xử lý @elseif($complaint->trang_thai == 2) Đã xử lý @else Đã hủy @endif
Người Xử Lý: @if($complaint->admin_id == null) @else {{$complaint->user->ho_ten}} @endif
Ngày Tạo: {{ $complaint->created_at }}
Ngày Cập Nhật: {{ $complaint->updated_at }}
Mã Đơn Hàng: {{ $complaint->orders->first()->id }}
Ngày Đặt Hàng: {{ $complaint->orders->first()->created_at }}
Tổng tiền trước giảm giá: {{ number_format($complaint->orders->first()->tong_tien_goc, 0, ',', '.') }} đ
Tổng Tiền: {{ number_format($complaint->orders->first()->tong_tien, 0, ',', '.') }} đ
Tên Sản Phẩm | Số Lượng | Giá | Thành Tiền |
---|---|---|---|
{{ $detail->product->ten_san_pham }} | {{ $detail->so_luong }} | {{ number_format($detail->gia, 0, ',', '.') }} đ | {{ number_format($detail->gia * $detail->so_luong, 0, ',', '.') }} đ |
Tên Khách Hàng: {{ $complaint->orders->first()->user->ho_ten }}
Email: {{ $complaint->orders->first()->user->email }}
Số Điện Thoại: {{ $complaint->orders->first()->user->so_dien_thoai }}
Địa Chỉ: {{ $complaint->orders->first()->user->dia_chi }}