@extends('tyro-dashboard::layouts.admin') @section('title', 'Users') @section('breadcrumb') Dashboard Users @endsection @section('content')
Manage user accounts, roles, and permissions.
| User | Roles | Status | Joined | Actions |
|---|---|---|---|---|
|
@if($listUser->profile_photo_path || ($listUser->use_gravatar && $listUser->email))
{{ $listUser->name }}
{{ $listUser->email }}
|
@forelse($listUser->roles as $role)
{{ $role->name }}
@empty
No roles
@endforelse
|
@if(method_exists($listUser, 'isSuspended') && $listUser->isSuspended()) Suspended @else Active @endif | {{ $listUser->created_at->format('M d, Y') }} |