@extends('layouts.dashboard') @section('title', 'User Management') @section('page-content')
| User | Contact | Roles | Status | Joined | Actions |
|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 2)) }}
{{ $user->name }}
ID: {{ $user->id }}
|
{{ $user->email }}
@if($user->phone)
{{ $user->phone }}
@endif
|
@foreach($user->roles as $role)
{{ ucwords(str_replace('-', ' ', $role->name)) }}
@endforeach
|
@if($user->is_active) Active @else Inactive @endif | {{ $user->created_at->format('M d, Y') }} | |
|
No users found |
|||||