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

25 lines
493 B
PHP
Raw Normal View History

2020-09-13 11:30:04 +00:00
@extends('architect::layouts.dn')
@section('page_title')
{{ $dn }}
@endsection
@section('page_subtitle')
2020-09-18 14:08:00 +00:00
{{ $leaf->entryuuid[0] ?? '' }}
2020-09-13 11:30:04 +00:00
@endsection
@section('page_icon')
fas fa-cog
@endsection
@section('main-content')
2020-09-18 14:08:00 +00:00
<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>
2020-09-13 11:30:04 +00:00
@endsection