@extends('layouts.app') @section('title', 'User Management') @section('page-title', 'User Management') @section('content')
| User | Role | Communicator Linked | Status | |
|---|---|---|---|---|
|
{{ $user->name }}
{{ $user->email }}
|
{{ ucfirst($user->role) }} | {{ $user->communicator?->name ?? '—' }} | {{ $user->is_active ? 'Active' : 'Inactive' }} | Edit @if($user->id !== Auth::id()) @endif |
| No users found | ||||