@extends('layouts.app') @section('title', 'LDAP Groups — ' . config('app.name')) @section('content')
@include('partials.nav')

LDAP Groups

Host: {{ $meta['server'] }} @if ($meta['domain']) · Domain: {{ $meta['domain'] }} @endif

@include('partials.flash') @if ($error)
{{ $error }}
@endif
@if ($search !== '') Clear @endif
{{ $meta['total'] }} groups
@foreach (['name' => 'Group', 'sam_account_name' => 'sAMAccountName', 'type' => 'Type', 'members_count' => 'Members', 'description' => 'Description'] as $key => $label) @php $nextDir = ($sort === $key && $dir === 'asc') ? 'desc' : 'asc'; $arrow = $sort === $key ? ($dir === 'asc' ? ' ↑' : ' ↓') : ''; @endphp @endforeach @forelse ($groups as $group) @empty @endforelse
{{ $label }}{{ $arrow }} Admin Note Action
{{ $group['name'] }} {{ $group['sam_account_name'] }} {{ $group['type'] }} {{ $group['members_count'] }} {{ $group['description'] }} {{ ($group['admin_note'] ?? '') !== '' ? Str::limit($group['admin_note'], 50) : '—' }} View
No groups found.
@endsection