File: D:/HostingSpaces/SBogers10/conmeq.komma.pro/resources/views/kms/section/actionlog.blade.php
@extends('kms.layouts.kms')
@section('content')
<div id="entity" class="full-width">
<div class="entity-header">
<div class="entity-header-attributes">
<h2>{{ ucfirst(__('shop/orders.orders')) }}</h2>
</div>
</div>
@if ($errors->any())
<div class="alert alert-danger">
<h2>@lang('shop/orders.search_error'):</h2>
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
<div class="entity-tabs">
<ul>
<li class="active">
<a href="#algemeen">@lang('kms/global.general')</a>
</li>
</ul>
</div>
<form action="{{ $retrieveRoute['route'] }}" method="POST" id="entity-form" enctype="multipart/form-data"
data-max-upload-size="{{ $maxUploadSize }}">
{{ method_field($retrieveRoute['method']) }}
{{csrf_field()}}
<div class="entity-attributes">
@foreach($section->getTabs() as $key => $tab)
<div id="tab-content-{!! $tab->getSlug() !!}" class="tab-content @if($key == 0) active @endif">
{{-- Tab Attributes --}}
@foreach($tab->getItems() as $attribute)
@if(\Auth::user()->role->id <= $attribute->getMinimumUserRole())
{!! $attribute->render() !!}
@endif
@endforeach
<button>@lang('kms/actionlog.retrieve')</button>
@if(!empty($logs))
<textarea
style="color: #479c38; font-size: 0.7rem; width: 100%; height: 30vh;">@foreach($logs as $log){{ (string) $log }}
@endforeach</textarea>
@endif
</div>
@endforeach
</div>
</form>
</div>
@stop