@extends('layouts.app') @section('title', 'Team Members') @section('page-title', 'Team Members') @section('content')
| Member | Role | Phone | Status | Joined | @if(auth()->user()->isSuperAdmin())Actions | @endif|
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
@if($user->username)
{{ $user->username }}
@endif
|
{{ $user->email }} | {{ str_replace('_', ' ', $user->role) }} | {{ $user->phone ?? '—' }} | {{ ucfirst($user->status) }} | {{ $user->created_at->format('d M Y') }} | @if(auth()->user()->isSuperAdmin())@endif |
| No members found. | ||||||