@extends('layouts.admin') @section('title') Thông tin {{$userDetail->ho_ten}} @endsection @section('content-admin')
{{ $userDetail->ho_ten }}
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') }}
Chưa có lịch sử đơn hàng của khách hàng {{$userDetail->ho_ten}}
@elseMã đơ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 |