@extends('tri-layout') @section('left') @if($recents)
{{ trans('entities.recently_viewed') }}
@include('partials.entity-list', ['entities' => $recents, 'style' => 'compact'])
@endif
{{ 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') @include('books.list', ['books' => $books, 'view' => $view]) @stop @section('right')
Actions
@if($currentUser->can('book-create-all')) @icon('add') {{ trans('entities.books_create') }} @endif @include('books.view-toggle', ['view' => $view])
@stop