| 
									
										
										
										
											2018-05-28 17:33:38 +08:00
										 |  |  | <div page-comments page-id="{{ $page->id }}" class="comments-list"> | 
					
						
							| 
									
										
										
										
											2019-04-13 19:58:57 +08:00
										 |  |  |     <div comment-count-bar class="grid half left-focus v-center"> | 
					
						
							|  |  |  |         <h5 comments-title>{{ trans_choice('entities.comment_count', count($page->comments), ['count' => count($page->comments)]) }}</h5> | 
					
						
							|  |  |  |         @if (count($page->comments) === 0) | 
					
						
							|  |  |  |             <div class="text-right" comment-add-button-container> | 
					
						
							|  |  |  |                 <button type="button" action="addComment" | 
					
						
							|  |  |  |                         class="button outline">{{ trans('entities.comment_add') }}</button> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |         @endif | 
					
						
							|  |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2017-09-03 23:37:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <div class="comment-container" comment-container> | 
					
						
							|  |  |  |         @foreach($page->comments as $comment) | 
					
						
							|  |  |  |             @include('comments.comment', ['comment' => $comment]) | 
					
						
							|  |  |  |         @endforeach | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @if(userCan('comment-create-all')) | 
					
						
							| 
									
										
										
										
											2019-04-13 17:50:24 +08:00
										 |  |  |         @include('comments.create') | 
					
						
							| 
									
										
										
										
											2017-09-03 23:37:51 +08:00
										 |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-13 19:58:57 +08:00
										 |  |  |     @if (count($page->comments) > 0) | 
					
						
							|  |  |  |         <div class="text-right" comment-add-button-container> | 
					
						
							|  |  |  |             <button type="button" action="addComment" | 
					
						
							|  |  |  |                     class="button outline">{{ trans('entities.comment_add') }}</button> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-30 11:32:47 +08:00
										 |  |  | </div> |