HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/blijegasten/blijegasten.be/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($sectionTabs as $tabIndex => $tab)
                    <?php /** @var \App\Komma\Kms\Core\Sections\Tabs\SectionTab $tab */?>
                    <div id="tab-content-{!! $tab->getName() !!}" class="tab-content {!! (session('tabslug', '') !== '' ? $tab->getName() == session('tabslug', '') : $tabIndex == 0) ? 'active': '' !!}">

                        {{-- Tab Attributes --}}
                        @foreach($tab->getItems() as $attribute)
                            <div class="entity-attribute-wrapper{{ Auth::user()->isAtLeast($attribute->getMinimumUserRole()) ? "": " hidden" }}">
                                {!! $attribute->render() !!}
                            </div>
                        @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 }}
                                &#10;@endforeach</textarea>
                        @endif
                    </div>
                @endforeach
            </div>
        </form>
    </div>
@stop