2023-02-19 05:35:07 +00:00
|
|
|
@extends('layouts.dn')
|
|
|
|
|
|
|
|
@section('page_title')
|
|
|
|
<table class="table table-borderless">
|
|
|
|
<tr>
|
|
|
|
<td style="border-radius: 5px;"><div class="page-title-icon f32"><i class="fas fa-info"></i></div></td>
|
2023-03-25 12:33:27 +00:00
|
|
|
<td class="top text-end align-text-top p-0 pt-2 }}"><strong>{{ __('Server Info') }}</strong><br><small>{{ $s->rootDSE()->entryuuid[0] ?? '' }}</small></td>
|
2023-02-19 05:35:07 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('main-content')
|
|
|
|
<div class="bg-white p-3">
|
|
|
|
<table class="table">
|
2023-03-01 22:54:30 +00:00
|
|
|
@foreach ($s->rootDSE()->getAttributes() as $attribute => $ao)
|
2023-02-19 05:35:07 +00:00
|
|
|
<tr>
|
|
|
|
<th class="w-25">
|
|
|
|
{!! ($x=$s->schema('attributetypes',$attribute))
|
|
|
|
? sprintf('<a class="attributetype" id="strtolower(%s)" href="%s">%s</a>',$x->name_lc,url('schema/attributetypes',$x->name_lc),$x->name)
|
|
|
|
: $attribute !!}
|
|
|
|
</th>
|
2023-03-01 22:54:30 +00:00
|
|
|
<td>{!! $ao !!}</td>
|
2023-02-19 05:35:07 +00:00
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
@endsection
|