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