37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <main class="content-wrap mt-m card">
 | |
|     <div class="grid half v-center no-row-gap">
 | |
|         <h1 class="list-heading">{{ trans('entities.books') }}</h1>
 | |
|         <div class="text-m-right my-m">
 | |
| 
 | |
|             @include('partials.sort', ['options' => [
 | |
|                 'name' => trans('common.sort_name'),
 | |
|                 'created_at' => trans('common.sort_created_at'),
 | |
|                 'updated_at' => trans('common.sort_updated_at'),
 | |
|             ], 'order' => $order, 'sort' => $sort, 'type' => 'books'])
 | |
| 
 | |
|         </div>
 | |
|     </div>
 | |
|     @if(count($books) > 0)
 | |
|         @if($view === 'list')
 | |
|             <div class="entity-list">
 | |
|                 @foreach($books as $book)
 | |
|                     @include('books.list-item', ['book' => $book])
 | |
|                 @endforeach
 | |
|             </div>
 | |
|         @else
 | |
|              <div class="grid third">
 | |
|                 @foreach($books as $key => $book)
 | |
|                     @include('partials.entity-grid-item', ['entity' => $book])
 | |
|                 @endforeach
 | |
|              </div>
 | |
|         @endif
 | |
|         <div>
 | |
|             {!! $books->render() !!}
 | |
|         </div>
 | |
|     @else
 | |
|         <p class="text-muted">{{ trans('entities.books_empty') }}</p>
 | |
|         @if(userCan('books-create-all'))
 | |
|             <a href="{{ url("/create-book") }}" class="text-pos">@icon('edit'){{ trans('entities.create_now') }}</a>
 | |
|         @endif
 | |
|     @endif
 | |
| </main> |