Added server info

This commit is contained in:
Deon George
2020-09-19 00:08:00 +10:00
parent db61e0d1ce
commit d20a17d3fe
12 changed files with 397 additions and 330 deletions

View File

@@ -8,22 +8,21 @@
{{ $dn }}
@endsection
@section('page_subtitle')
{{ $leaf->entryuuid[0] }}
{{ $leaf->entryuuid[0] ?? '' }}
@endsection
@section('page_icon')
fas fa-cog
@endsection
@section('main-content')
<table class="table">
<tr>
<td colspan="2">@dump($leaf->getOriginal(),$leaf->countAttributes())</td>
</tr>
@foreach ($leaf->getAttributes() as $attribute => $value)
<tr>
<th>{{ $attribute }}</th>
<td>{!! is_array($value) ? join('<br>',$value) : $value !!}</td>
</tr>
@endforeach
</table>
<div class="bg-white p-3">
<table class="table">
@foreach ($attributes as $attribute => $value)
<tr>
<th>{{ $attribute }}</th>
<td>{!! is_array($value) ? join('<br>',$value) : $value !!}</td>
</tr>
@endforeach
</table>
</div>
@endsection