@extends('layouts.admin') @section('title', 'Admin Users') @section('breadcrumb', 'Admin Users') @section('content')
Manage administrator accounts and their access
| Select | Admin | Admin Role | Status | Last Login | Joined | Actions |
|---|---|---|---|---|---|---|
| id === auth()->id() ? 'disabled' : '' }}> |
{{ substr($user->name, 0, 1) }}
{{ $user->name }}
@if($user->id === auth()->id())
(You)
@endif
{{ $user->email }}
@if($user->phone)
{{ $user->phone }}
@endif
|
@forelse($user->adminRoles as $assignedRole) {{ $assignedRole->name }} @empty No role assigned @endforelse | @if($user->email_verified_at) Active @else Inactive @endif | {{ $user->last_login_at ? $user->last_login_at->ist()->format('M d, Y H:i') : 'Never' }} | {{ $user->created_at->ist()->format('M d, Y') }} |