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