@if($show_fileds_count > 1 || $hasExtensions)
@foreach($customShowButtons as $btn)
{!! Html::customButton($btn) !!}
@endforeach
@foreach($show_fields as $panelName => $panel)
{{ Html::section($language_file,$panelName) }}
@foreach($panel as $fieldName => $options)
@if(isset($entity->{$fieldName}) && $entity->{$fieldName} != '')
{{
Html::renderField($entity,$fieldName,$options,$language_file)
}}
@endif
@endforeach
@endforeach
@include('core::crud.partial.entity_created_at')
@foreach($relationTabs as $tabKey => $tab)
@if(Auth::user()->hasPermissionTo($tab['permissions']['browse']))
@endif
@endforeach
@if($commentableExtension)
@endif
@if($attachmentsExtension)
@include('core::extension.attachments.list',['entity'=>$entity,'permissions'=>$permissions])
@endif
@if($actityLogDatatable != null )
@include('core::extension.activity_log.table')
@endif