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