phpldapadmin/resources/views/widgets/dn.blade.php
2021-12-11 00:24:00 +11:00

25 lines
502 B
PHP

@extends('architect::layouts.dn')
@section('page_title')
{{ $dn }}
@endsection
@section('page_subtitle')
{{ $leaf->entryuuid[0] ?? '' }}
@endsection
@section('page_icon')
{{ $leaf->icon() }}
@endsection
@section('main-content')
<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