@extends('layouts.admin') @section('title', 'User Details') @section('content')
User ID: #{{ $user->id }}
Username
{{ $user->username }}
Phone
{{ $user->phone ?: '—' }}
{{ $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') ?? '—' }}