@extends('sidebar-layout') @section('toolbar')
id}/switch-book-view") }}" method="POST" class="inline"> {!! csrf_field() !!} {!! method_field('PATCH') !!} @if ($booksViewType === 'list') @else @endif
@if($currentUser->can('book-create-all')) @icon('add'){{ trans('entities.books_create') }} @endif
@stop @section('sidebar') @if($recents)

@icon('view') {{ trans('entities.recently_viewed') }}

@include('partials/entity-list', ['entities' => $recents, 'style' => 'compact'])
@endif

@icon('star-circle') {{ trans('entities.books_new') }}

@if(count($popular) > 0) @include('partials/entity-list', ['entities' => $new, 'style' => 'compact']) @else
{{ trans('entities.books_new_empty') }}
@endif
@stop @section('body') @if($booksViewType === 'list')
@else
@endif

{{ trans('entities.books') }}

@if(count($books) > 0) @if($booksViewType === 'list') @foreach($books as $book) @include('books/list-item', ['book' => $book])
@endforeach {!! $books->render() !!} @else
@foreach($books as $key => $book) @include('books/grid-item', ['book' => $book]) @endforeach
{!! $books->render() !!}
@endif @else

{{ trans('entities.books_empty') }}

@if(userCan('books-create-all')) @icon('edit'){{ trans('entities.create_one_now') }} @endif @endif
@stop