2018-12-01 15:28:17 -05:00
|
|
|
@extends('tri-layout')
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2019-03-30 11:15:01 -04:00
|
|
|
@section('body')
|
|
|
|
@include('books.list', ['books' => $books, 'view' => $view])
|
|
|
|
@stop
|
|
|
|
|
2018-12-01 15:28:17 -05:00
|
|
|
@section('left')
|
2017-08-20 08:57:25 -04:00
|
|
|
@if($recents)
|
2018-12-01 11:29:57 -05:00
|
|
|
<div id="recents" class="mb-xl">
|
|
|
|
<h5>{{ trans('entities.recently_viewed') }}</h5>
|
|
|
|
@include('partials.entity-list', ['entities' => $recents, 'style' => 'compact'])
|
2015-07-12 15:01:42 -04:00
|
|
|
</div>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
|
|
|
|
2018-12-01 11:29:57 -05:00
|
|
|
<div id="popular" class="mb-xl">
|
|
|
|
<h5>{{ trans('entities.books_popular') }}</h5>
|
2017-08-20 08:57:25 -04:00
|
|
|
@if(count($popular) > 0)
|
2018-12-01 11:29:57 -05:00
|
|
|
@include('partials.entity-list', ['entities' => $popular, 'style' => 'compact'])
|
2017-08-20 08:57:25 -04:00
|
|
|
@else
|
|
|
|
<div class="body text-muted">{{ trans('entities.books_popular_empty') }}</div>
|
|
|
|
@endif
|
2015-07-23 16:55:46 -04:00
|
|
|
</div>
|
2017-08-26 08:24:55 -04:00
|
|
|
|
2018-12-01 11:29:57 -05:00
|
|
|
<div id="new" class="mb-xl">
|
|
|
|
<h5>{{ trans('entities.books_new') }}</h5>
|
2017-08-26 08:24:55 -04:00
|
|
|
@if(count($popular) > 0)
|
2018-12-01 11:29:57 -05:00
|
|
|
@include('partials.entity-list', ['entities' => $new, 'style' => 'compact'])
|
2017-08-26 08:24:55 -04:00
|
|
|
@else
|
|
|
|
<div class="body text-muted">{{ trans('entities.books_new_empty') }}</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
2017-08-20 08:57:25 -04:00
|
|
|
@stop
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2018-12-01 15:28:17 -05:00
|
|
|
@section('right')
|
|
|
|
|
2018-12-08 18:34:06 -05:00
|
|
|
<div class="actions mb-xl">
|
2019-01-13 10:54:55 -05:00
|
|
|
<h5>{{ trans('common.actions') }}</h5>
|
2018-12-01 15:28:17 -05:00
|
|
|
<div class="icon-list text-primary">
|
|
|
|
@if($currentUser->can('book-create-all'))
|
2019-08-04 09:26:39 -04:00
|
|
|
<a href="{{ url("/create-book") }}" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('add')</span>
|
2018-12-01 15:28:17 -05:00
|
|
|
<span>{{ trans('entities.books_create') }}</span>
|
|
|
|
</a>
|
|
|
|
@endif
|
2019-04-13 07:46:15 -04:00
|
|
|
|
|
|
|
@include('partials.view-toggle', ['view' => $view, 'type' => 'book'])
|
2018-12-01 15:28:17 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
@stop
|