@extends(backpack_view('blank')) @php $defaultBreadcrumbs = [ trans('backpack::crud.admin') => url(config('backpack.base.route_prefix'), 'dashboard'), $crud->entity_name_plural => url($crud->route), trans('backpack::crud.list') => false, ]; // if breadcrumbs aren't defined in the CrudController, use the default breadcrumbs $breadcrumbs = $breadcrumbs ?? $defaultBreadcrumbs; @endphp @php $entityName = strtolower(class_basename($crud->getModel())); $tableId = $entityName . 'Table'; @endphp @section('header')

Rechercher une {!! $crud->getHeading() ?? $crud->entity_name !!}

@endsection @section('content')
{{-- Default box --}}
{{-- THE ACTUAL CONTENT --}}
{!! $crud->getSubheading() ?? '' !!}
@if ($crud->buttons()->where('stack', 'top')->count() || $crud->exportButtons())
@include('crud::inc.button_stack', ['stack' => 'top'])
@endif
@include('admin.crud.inc.datatable') @if ($crud->buttons()->where('stack', 'bottom')->count())
@include('crud::inc.button_stack', ['stack' => 'bottom'])
@endif
@endsection @section('after_styles') {{-- CRUD LIST CONTENT - crud_list_styles stack --}} @stack('crud_list_styles') @endsection @section('after_scripts') @include('crud::inc.datatables_logic') {{-- CRUD LIST CONTENT - crud_list_scripts stack --}} @stack('crud_list_scripts') @endsection