2017-08-20 08:57:25 -04:00
|
|
|
@extends('sidebar-layout')
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
@section('toolbar')
|
2017-12-29 11:49:03 -05:00
|
|
|
<div class="col-xs-6">
|
|
|
|
<div class="action-buttons text-left">
|
2018-05-12 08:56:35 -04:00
|
|
|
@include('books/view-toggle', ['booksViewType' => $booksViewType])
|
2017-12-29 11:49:03 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-xs-6 faded">
|
|
|
|
<div class="action-buttons">
|
2017-08-20 08:57:25 -04:00
|
|
|
@if($currentUser->can('book-create-all'))
|
2018-03-25 06:34:42 -04:00
|
|
|
<a href="{{ baseUrl("/create-book") }}" class="text-pos text-button">@icon('add'){{ trans('entities.books_create') }}</a>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
@section('sidebar')
|
|
|
|
@if($recents)
|
|
|
|
<div id="recents" class="card">
|
2018-02-17 14:49:00 -05:00
|
|
|
<h3>@icon('view') {{ trans('entities.recently_viewed') }}</h3>
|
2017-08-20 08:57:25 -04:00
|
|
|
@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
|
|
|
|
|
|
|
|
<div id="popular" class="card">
|
2018-02-17 14:49:00 -05:00
|
|
|
<h3>@icon('popular') {{ trans('entities.books_popular') }}</h3>
|
2017-08-20 08:57:25 -04:00
|
|
|
@if(count($popular) > 0)
|
|
|
|
@include('partials/entity-list', ['entities' => $popular, 'style' => 'compact'])
|
|
|
|
@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
|
|
|
|
|
|
|
<div id="new" class="card">
|
2018-02-17 14:49:00 -05:00
|
|
|
<h3>@icon('star-circle') {{ trans('entities.books_new') }}</h3>
|
2017-08-26 08:24:55 -04:00
|
|
|
@if(count($popular) > 0)
|
|
|
|
@include('partials/entity-list', ['entities' => $new, 'style' => 'compact'])
|
|
|
|
@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
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
@section('body')
|
2018-05-09 23:35:18 -04:00
|
|
|
@include('books/list', ['books' => $books, 'bookViewType' => $booksViewType])
|
2015-07-12 15:01:42 -04:00
|
|
|
@stop
|