@extends('admin.layouts.app') @section('title', 'Users') @section('breadcrumb') Users @endsection @section('content')
Manage admin and system users
| User | Role | Status | Email Verified | Joined | Actions | |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
|
{{ $user->role?->name ?? 'user' }} | @if($user->is_active ?? true) Active @else Inactive @endif | @if($user->email_verified_at) Verified @else Unverified @endif | {{ $user->created_at->format('d M Y') }} | ||
|
No users found
|
||||||