@extends('super-admin.layout') @section('title', 'User Management') @section('subtitle', 'Manage user accounts and assign roles') @section('content')
| User | Roles | Status | Joined | Actions |
|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 2)) }}
{{ $user->name }}
{{ $user->email }}
|
@forelse($user->roles as $role)
@if($role->name === 'Super Admin')
{{ $role->name }}
@elseif($role->name === 'Admin')
{{ $role->name }}
@else
{{ $role->name }}
@endif
@empty
Customer
@endforelse
|
@if($user->is_active ?? true) Active @else Inactive @endif | {{ $user->created_at->format('M d, Y') }} | |
No users foundTry adjusting your search or filter criteria. |
||||