85 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
| @extends('sidebar-layout')
 | |
| 
 | |
| @section('toolbar')
 | |
|     <div class="col-xs-6">
 | |
|         <div class="action-buttons text-left">
 | |
|             <form action="{{ baseUrl("/settings/users/{$currentUser->id}/switch-book-view") }}" method="POST" class="inline">
 | |
|                 {!! csrf_field() !!}
 | |
|                 {!! method_field('PATCH') !!}
 | |
|                 <input type="hidden" value="{{ $booksViewType === 'list'? 'grid' : 'list' }}" name="book_view_type">
 | |
|                 @if ($booksViewType === 'list')
 | |
|                     <button type="submit" class="text-pos text-button">@icon('grid'){{ trans('common.grid_view') }}</button>
 | |
|                 @else
 | |
|                     <button type="submit" class="text-pos text-button">@icon('list'){{ trans('common.list_view') }}</button>
 | |
|                 @endif
 | |
|             </form>
 | |
|         </div>
 | |
|     </div>
 | |
|     <div class="col-xs-6 faded">
 | |
|         <div class="action-buttons">
 | |
|             @if($currentUser->can('book-create-all'))
 | |
|                 <a href="{{ baseUrl("/create-book") }}" class="text-pos text-button">@icon('add'){{ trans('entities.books_create') }}</a>
 | |
|             @endif
 | |
|         </div>
 | |
|     </div>
 | |
| @stop
 | |
| 
 | |
| @section('sidebar')
 | |
|     @if($recents)
 | |
|         <div id="recents" class="card">
 | |
|             <h3>@icon('view') {{ trans('entities.recently_viewed') }}</h3>
 | |
|             @include('partials/entity-list', ['entities' => $recents, 'style' => 'compact'])
 | |
|         </div>
 | |
|     @endif
 | |
| 
 | |
|     <div id="popular" class="card">
 | |
|         <h3>@icon('popular') {{ trans('entities.books_popular') }}</h3>
 | |
|         @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
 | |
|     </div>
 | |
| 
 | |
|     <div id="new" class="card">
 | |
|         <h3>@icon('star-circle') {{ trans('entities.books_new') }}</h3>
 | |
|         @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>
 | |
| @stop
 | |
| 
 | |
| @section('body')
 | |
|     @if($booksViewType === 'list')
 | |
|         <div class="container small" ng-non-bindable>
 | |
|     @else
 | |
|         <div class="container" ng-non-bindable>
 | |
|     @endif
 | |
|         <h1>{{ trans('entities.books') }}</h1>
 | |
|         @if(count($books) > 0)
 | |
|             @if($booksViewType === 'list')
 | |
|                 @foreach($books as $book)
 | |
|                     @include('books/list-item', ['book' => $book])
 | |
|                     <hr>
 | |
|                 @endforeach
 | |
|                 {!! $books->render() !!}
 | |
|             @else
 | |
|                  <div class="grid third">
 | |
|                     @foreach($books as $key => $book)
 | |
|                             @include('books/grid-item', ['book' => $book])
 | |
|                     @endforeach
 | |
|                  </div>
 | |
|                 <div>
 | |
|                     {!! $books->render() !!}
 | |
|                 </div>
 | |
|             @endif
 | |
|         @else
 | |
|             <p class="text-muted">{{ trans('entities.books_empty') }}</p>
 | |
|             @if(userCan('books-create-all'))
 | |
|                 <a href="{{ baseUrl("/create-book") }}" class="text-pos">@icon('edit'){{ trans('entities.create_one_now') }}</a>
 | |
|             @endif
 | |
|         @endif
 | |
|     </div>
 | |
| @stop |