phpldapadmin/resources/views/widgets/dn.blade.php

30 lines
594 B
PHP
Raw Normal View History

2020-09-13 11:30:04 +00:00
@extends('architect::layouts.dn')
@section('htmlheader_title')
Home
@endsection
@section('page_title')
{{ $dn }}
@endsection
@section('page_subtitle')
{{ $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>
@endsection