@extends(backpack_view('blank')) @section('header')

Films / Gestion des paramètres

@endsection @section('content')
@include('admin.crud.inc.card-datatable_header')
@if ($crud->filtersEnabled()) @include('crud::inc.filters_navbar') @endif @include('admin.crud.inc.datatable')
@endsection @push('after_styles') {{-- CRUD LIST CONTENT - crud_list_styles stack --}} @stack('crud_list_styles') @endpush @push('before_after_scripts') @php $entityName = strtolower(class_basename($crud->getModel())); $tableId = $entityName . 'Table'; $table = new \App\Models\DatatableSetting($tableId, [], '/' . $crud->route, url($crud->route)); $table->setDefaultPageLength(10); $table->setGetPageLengthMenu([10, 25, 50, 100]); $table->setHasBulkAction(true); $datatables = [$table]; @endphp @include('admin.crud.inc.datatables_logic') {{-- CRUD LIST CONTENT - crud_list_scripts stack --}} @stack('crud_list_scripts') @endpush