@extends('layouts.app') @section('title', 'LDAP Users — ' . config('app.name')) @section('content')
Host: {{ $meta['server'] }} @if ($meta['domain']) · Domain: {{ $meta['domain'] }} @endif
| {{ $label }} {{ $arrow }} | @endforeachMeta | Actions | @include('partials.list-table-row-hint', ['tag' => 'th'])|||||||
|---|---|---|---|---|---|---|---|---|---|
| {{ $user['username'] }} | {{ $user['display_name'] }} | {{ $user['email'] }} | {{ $user['phone'] !== '' ? $user['phone'] : '—' }} | {{ $user['enabled'] ? 'Enabled' : 'Disabled' }} | {{ $user['last_logon'] ?? '—' }} |
@if (count($user['groups']) === 0)
—
@else
@foreach ($user['groups'] as $groupName)
{{ $groupName }}
@endforeach
@endif
|
@if (($user['other_email'] ?? '') !== '' || ($user['admin_note'] ?? '') !== '')
@if (($user['other_email'] ?? '') !== '')
{{ $user['other_email'] }}
@endif
@if (($user['admin_note'] ?? '') !== '')
{{ Str::limit($user['admin_note'], 40) }}
@endif
@else
—
@endif
|
View @if ($user['protected']) Protected @else @endif | @include('partials.list-table-row-hint', ['tag' => 'td'])|
| No users found. | |||||||||