@extends('admin.layout.main') @section('admin')
Manage all users and their roles
| User | Role | Created | Actions | |
|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
ID: {{ $user->id }}
|
@if ($user->role === 'admin') Admin @elseif($user->role === 'manager') Manager @else Client @endif | {{ $user->email }} |
{{ $user->created_at->format('M j, Y') }}
|
|
|
No users found Get started by creating your first user |
||||