@extends('layouts.admin') @section('title', 'User Details') @section('content')

User Details

ইউজারের বিস্তারিত তথ্য

{{ strtoupper(substr($user->username ?? 'U', 0, 1)) }}

{{ $user->username }}

User ID: #{{ $user->id }}

{{ ucfirst($user->status) }} {{ $user->is_online ? 'Online' : 'Offline' }}

Username

{{ $user->username }}

Phone

{{ $user->phone ?: '—' }}

Email

{{ $user->email ?: '—' }}

Joined Date

{{ optional($user->created_at)?->format('d M Y h:i A') ?? '—' }}

Last Login

{{ optional($user->last_login_at)?->format('d M Y h:i A') ?? '—' }}

Last Logout

{{ optional($user->last_logout_at)?->format('d M Y h:i A') ?? '—' }}

Last Activity

{{ optional($user->last_activity_at)?->format('d M Y h:i A') ?? '—' }}

@endsection