@extends('admin.layouts.app') @section('title', 'Users') @section('breadcrumb')
| Name | Role | Status | Joined | Actions | |
|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name,0,1)) }}
{{ $user->name }}
@if($user->id === auth()->id())
You
@endif
|
{{ $user->email }} | {{ ucfirst($user->role) }} | @if($user->id !== auth()->id()) @else Active @endif | {{ $user->created_at->format('d M Y') }} | |
| No users found. | |||||