@extends('layouts.admin') @section('title') {{$title}} @endsection @section('content-admin')
Quay Lại

Chi Tiết Khiếu Nại

Thông Tin Khiếu Nại

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 }}

Thông Tin Đơn Hàng

Thông Tin Đơn Hàng

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, ',', '.') }} đ

Danh Sách Sản Phẩm
@foreach($complaint->orders->first()->OrderDetail as $detail) @endforeach
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, ',', '.') }} đ

Thông Tin Khách Hàng

Thông Tin Khách Hàng

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 }}

@endsection