@extends('admin::layout') @section('header')

{!! $xPanel->entity_name_plural !!} {{ trans('admin::messages.all') }} {!! $xPanel->entity_name_plural !!} {{ trans('admin::messages.in_the_database') }}.

@endsection @section('content')
@if (isTranlatableModel($xPanel->model))

{{ trans('admin::messages.Help') }}

{!! trans('admin::messages.help_translation_list_entries') !!}

@endif
@include('admin::panel.inc.button_stack', ['stack' => 'top'])
{{-- List Filters --}} @if ($xPanel->filtersEnabled()) @include('admin::panel.inc.filters_navbar') @endif
{!! csrf_field() !!} @if ($xPanel->details_row) @endif {{-- Table columns --}} @foreach ($xPanel->columns as $column) @if ($column['type'] == 'checkbox') @else @endif @endforeach @if ( $xPanel->buttons->where('stack', 'line')->count() ) @endif @if ($xPanel->details_row) @endif {{-- Table columns --}} @foreach ($xPanel->columns as $column) @endforeach @if ( $xPanel->buttons->where('stack', 'line')->count() ) @endif
{!! $column['label'] !!} {{ trans('admin::messages.actions') }}
{{ $column['label'] }}{{ trans('admin::messages.actions') }}
@include('admin::panel.inc.button_stack', ['stack' => 'bottom'])
@endsection @section('after_styles') @stack('crud_list_styles') @endsection @section('after_scripts') @if (isset($xPanel->export_buttons) and $xPanel->export_buttons) @endif @stack('crud_list_scripts') @endsection