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

{!! $crud->getHeading() ?? $crud->entity_name_plural !!} {!! $crud->getSubheading() ?? trans('backpack::crud.all').''.$crud->entity_name_plural.' '.trans('backpack::crud.in_the_database') !!}.

@endsection @section('content')
{{-- Backpack List Filters --}} @if ($crud->filtersEnabled()) @include('crud::inc.filters_navbar_lib') @endif
{{-- Custom Grid View --}}
@foreach ($crud->getEntries() as $entry)
{{ $entry->name }}
{{ $entry->author }}
@endforeach
@if ( $crud->buttons->where('stack', 'bottom')->count() )
@include('crud::inc.button_stack', ['stack' => 'bottom'])
@endif
@endsection @section('after_styles') @stack('crud_list_styles') @endsection @section('after_scripts') @stack('crud_list_scripts') @endsection