2021-08-22 08:15:58 -04:00
|
|
|
@extends('layouts.tri')
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2019-03-30 11:15:01 -04:00
|
|
|
@section('body')
|
2022-10-30 11:16:06 -04:00
|
|
|
@include('books.parts.list', ['books' => $books, 'view' => $view, 'listOptions' => $listOptions])
|
2019-03-30 11:15:01 -04:00
|
|
|
@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>
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.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)
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.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)
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.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>
|
2023-01-28 11:06:11 -05:00
|
|
|
<div class="icon-list text-link">
|
2021-01-17 08:41:43 -05:00
|
|
|
@if(user()->can('book-create-all'))
|
2022-11-05 09:39:17 -04:00
|
|
|
<a href="{{ url("/create-book") }}" data-shortcut="new" 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
|
|
|
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.view-toggle', ['view' => $view, 'type' => 'books'])
|
2021-11-06 16:21:11 -04:00
|
|
|
|
|
|
|
<a href="{{ url('/tags') }}" class="icon-list-item">
|
|
|
|
<span>@icon('tag')</span>
|
|
|
|
<span>{{ trans('entities.tags_view_tags') }}</span>
|
|
|
|
</a>
|
2018-12-01 15:28:17 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
@stop
|