@extends('layouts.app') @section('title', 'Users') @section('page-title', 'Users') @section('content') Manage system users, account status, and role assignments. {{-- Page Actions --}}
Manage user accounts and their assigned system roles.
| # | User | Role | Status | Email Verified | Created | Actions |
|---|---|---|---|---|---|---|
| {{ $users->firstItem() + $loop->index }} | {{-- User --}}
{{-- Avatar --}}
{{ mb_substr($user->name, 0, 1) }}
{{ $user->name }} @if (auth()->id() === $user->id) You @endif{{ $user->email }} |
{{-- Role --}}
@if ($role) {{ $role->name }} @else No Role @endif | {{-- Status --}}@if ($user->is_active) Active @else Inactive @endif | {{-- Email Verification --}}@if ($user->email_verified_at) Verified @else Not Verified @endif | {{-- Created --}}
{{ $user->created_at?->format('d M Y') ?? '—' }} {{ $user->created_at?->format('h:i A') ?? '' }} |
{{-- Actions --}}
{{ $user->email }}
@if ( request()->filled('search') || request()->filled('role') || request()->filled('status') ) No users match the selected filters. Try changing or resetting your search criteria. @else Create your first system user and assign an appropriate role to control their access. @endif