2015-07-12 15:01:42 -04:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2015-08-31 06:43:28 -04:00
|
|
|
<div class="faded-small">
|
|
|
|
<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">
|
|
|
|
@if($currentUser->can('book-create'))
|
2015-09-02 13:26:33 -04:00
|
|
|
<a href="/books/create" class="text-pos text-button"><i class="zmdi zmdi-plus"></i>Add new book</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-08-31 12:59:45 -04:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2015-11-21 12:22:14 -05:00
|
|
|
<div class="col-sm-7">
|
2015-08-31 12:59:45 -04:00
|
|
|
<h1>Books</h1>
|
|
|
|
@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
|
|
|
|
<p class="text-muted">No books have been created.</p>
|
|
|
|
<a href="/books/create" class="text-pos"><i class="zmdi zmdi-edit"></i>Create one now</a>
|
|
|
|
@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">
|
|
|
|
<div class="margin-top large"> </div>
|
2015-11-21 13:05:03 -05:00
|
|
|
@if($recents)
|
|
|
|
<h3>Recently Viewed</h3>
|
|
|
|
@include('partials/entity-list', ['entities' => $recents])
|
|
|
|
@endif
|
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
|