@extends('layouts.admin') @section('title') Thông tin {{$userDetail->ho_ten}} @endsection @section('content-admin')

THÔNG TIN CHUNG

@if(!empty($userDetail->anh)) @else @endif

{{ $userDetail->loai_tai_khoan == 0 ? 'KHÁCH HÀNG' : 'NHÂN VIÊN' }}

{{ $userDetail->ho_ten }}

THÔNG TIN CHI TIẾT

Tài khoản: {{ $userDetail->username }}

Email: {{ $userDetail->email }}

Chức vụ: {{ $userDetail->ten_chuc_vu }}

CCCD: {{ $userDetail->cccd ?? 'Không xác định' }}

Giới tính: @if($userDetail->gioi_tinh === 1) Nam @elseif($userDetail->gioi_tinh === 0) Nữ @else Không xác định @endif

Điện thoại: {{ $userDetail->so_dien_thoai ?? 'Không xác định' }}

Địa chỉ: {{ $userDetail->dia_chi ?? 'Không xác định' }}

Ngày tạo TK: {{ \Carbon\Carbon::parse($userDetail->created_at)->format('d-m-Y H:i:s') }}

Ngày cập nhật gần nhất: {{ \Carbon\Carbon::parse($userDetail->updated_at)->format('d-m-Y H:i:s') }}

Lịch sử mua hàng
@if($orderHistory->isEmpty())

Chưa có lịch sử đơn hàng của khách hàng {{$userDetail->ho_ten}}

@else @foreach($orderHistory as $order) @endforeach
Mã đơn hàng Ngày mua Tổng tiền Trạng thái Chi tiết
{{ $order->id }} {{ $order->created_at->format('d/m/Y') }} {{ number_format($order->tong_tien, 0, ',', '.') }} VNĐ @if($order->trang_thai == 0) Đang Xử Lý @elseif($order->trang_thai == 1) Đang Giao @elseif($order->trang_thai == 2) Hoàn Tất @elseif($order->trang_thai == 3) Đã Hủy @elseif($order->trang_thai == 4) Trả Hàng @elseif($order->trang_thai == 5) Đặt Hàng @endif Xem chi tiết
@endif
@endsection @section('stylesheet') @endsection