2015-07-12 20:01:42 +01:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2016-02-11 22:23:19 +00:00
|
|
|
<div class="faded-small toolbar">
|
2015-08-31 11:43:28 +01:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2015-11-21 17:22:14 +00:00
|
|
|
<div class="col-xs-1"></div>
|
|
|
|
<div class="col-xs-11 faded">
|
2015-08-31 11:43:28 +01:00
|
|
|
<div class="action-buttons">
|
2016-02-27 19:24:42 +00:00
|
|
|
@if($currentUser->can('book-create-all'))
|
2016-11-17 13:33:07 +00:00
|
|
|
<a href="{{ baseUrl("/books/create") }}" class="text-pos text-button"><i class="zmdi zmdi-plus"></i>{{ trans('entities.books_create') }}</a>
|
2015-08-31 11:43:28 +01:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-12 20:01:42 +01:00
|
|
|
</div>
|
2015-07-23 21:55:46 +01:00
|
|
|
</div>
|
2015-07-12 20:01:42 +01:00
|
|
|
|
|
|
|
|
2015-12-30 21:38:20 +00:00
|
|
|
<div class="container" ng-non-bindable>
|
2015-08-31 17:59:45 +01:00
|
|
|
<div class="row">
|
2015-11-21 17:22:14 +00:00
|
|
|
<div class="col-sm-7">
|
2016-11-17 13:33:07 +00:00
|
|
|
<h1>{{ trans('entities.books') }}</h1>
|
2015-08-31 17:59:45 +01:00
|
|
|
@if(count($books) > 0)
|
|
|
|
@foreach($books as $book)
|
2015-09-03 16:51:10 +01:00
|
|
|
@include('books/list-item', ['book' => $book])
|
2015-08-31 17:59:45 +01:00
|
|
|
<hr>
|
|
|
|
@endforeach
|
2015-11-09 19:46:04 +00:00
|
|
|
{!! $books->render() !!}
|
2015-08-31 17:59:45 +01:00
|
|
|
@else
|
2016-11-17 13:33:07 +00:00
|
|
|
<p class="text-muted">{{ trans('entities.books_empty') }}</p>
|
2016-03-05 18:09:21 +00:00
|
|
|
@if(userCan('books-create-all'))
|
2016-11-17 13:33:07 +00:00
|
|
|
<a href="{{ baseUrl("/books/create") }}" class="text-pos"><i class="zmdi zmdi-edit"></i>{{ trans('entities.create_one_now') }}</a>
|
2016-03-05 18:09:21 +00:00
|
|
|
@endif
|
2015-08-31 17:59:45 +01:00
|
|
|
@endif
|
2015-08-31 11:43:28 +01:00
|
|
|
</div>
|
2015-11-21 17:22:14 +00:00
|
|
|
<div class="col-sm-4 col-sm-offset-1">
|
2015-12-02 20:22:41 +00:00
|
|
|
<div id="recents">
|
|
|
|
@if($recents)
|
2016-11-17 13:33:07 +00:00
|
|
|
<div class="margin-top"> </div>
|
|
|
|
<h3>{{ trans('entities.recently_viewed') }}</h3>
|
2015-12-02 20:22:41 +00:00
|
|
|
@include('partials/entity-list', ['entities' => $recents])
|
|
|
|
@endif
|
|
|
|
</div>
|
2015-11-21 17:22:14 +00:00
|
|
|
<div class="margin-top large"> </div>
|
2015-12-02 20:22:41 +00:00
|
|
|
<div id="popular">
|
2016-11-17 13:33:07 +00:00
|
|
|
<h3>{{ trans('entities.books_popular') }}</h3>
|
2015-12-02 20:22:41 +00:00
|
|
|
@if(count($popular) > 0)
|
|
|
|
@include('partials/entity-list', ['entities' => $popular])
|
|
|
|
@else
|
2016-11-17 13:33:07 +00:00
|
|
|
<p class="text-muted">{{ trans('entities.books_popular_empty') }}</p>
|
2015-12-02 20:22:41 +00:00
|
|
|
@endif
|
|
|
|
</div>
|
2015-11-21 17:22:14 +00:00
|
|
|
</div>
|
2015-08-31 17:59:45 +01:00
|
|
|
</div>
|
2015-08-31 11:43:28 +01:00
|
|
|
</div>
|
2015-07-15 22:55:49 +01:00
|
|
|
|
2015-07-12 20:01:42 +01:00
|
|
|
@stop
|