| 
									
										
										
										
											2021-05-05 06:15:05 +08:00
										 |  |  | @extends('export-layout') | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 06:15:05 +08:00
										 |  |  | @section('title', $book->name) | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 06:15:05 +08:00
										 |  |  | @section('content') | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |     <h1 style="font-size: 4.8em">{{$book->name}}</h1> | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |     <p>{{ $book->description }}</p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @if(count($bookChildren) > 0) | 
					
						
							|  |  |  |         <ul class="contents"> | 
					
						
							|  |  |  |             @foreach($bookChildren as $bookChild) | 
					
						
							|  |  |  |                 <li><a href="#{{$bookChild->getType()}}-{{$bookChild->id}}">{{ $bookChild->name }}</a></li> | 
					
						
							| 
									
										
										
										
											2020-12-18 01:31:18 +08:00
										 |  |  |                 @if($bookChild->isA('chapter') && count($bookChild->visible_pages) > 0) | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |                     <ul> | 
					
						
							| 
									
										
										
										
											2020-12-18 01:31:18 +08:00
										 |  |  |                         @foreach($bookChild->visible_pages as $page) | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |                             <li><a href="#page-{{$page->id}}">{{ $page->name }}</a></li> | 
					
						
							|  |  |  |                         @endforeach | 
					
						
							|  |  |  |                     </ul> | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  |                 @endif | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |             @endforeach | 
					
						
							|  |  |  |         </ul> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @foreach($bookChildren as $bookChild) | 
					
						
							|  |  |  |         <div class="page-break"></div> | 
					
						
							|  |  |  |         <h1 id="{{$bookChild->getType()}}-{{$bookChild->id}}">{{ $bookChild->name }}</h1> | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |         @if($bookChild->isA('chapter')) | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |             <p>{{ $bookChild->description }}</p> | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-18 01:31:18 +08:00
										 |  |  |             @if(count($bookChild->visible_pages) > 0) | 
					
						
							|  |  |  |                 @foreach($bookChild->visible_pages as $page) | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  |                     <div class="page-break"></div> | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |                     <div class="chapter-hint">{{$bookChild->name}}</div> | 
					
						
							|  |  |  |                     <h1 id="page-{{$page->id}}">{{ $page->name }}</h1> | 
					
						
							|  |  |  |                     {!! $page->html !!} | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  |                 @endforeach | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |             @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         @else | 
					
						
							|  |  |  |             {!! $bookChild->html !!} | 
					
						
							|  |  |  |         @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @endforeach | 
					
						
							| 
									
										
										
										
											2021-05-05 06:15:05 +08:00
										 |  |  | @endsection |