@extends('base') @section('content')
@if($currentUser->can('book-create-all')) Add new book @endif

Books

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

No books have been created.

Create one now @endif
@if($recents)
 

Recently Viewed

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