| 
									
										
										
										
											2020-11-03 06:47:48 +08:00
										 |  |  | @extends('simple-layout') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('body') | 
					
						
							|  |  |  |     <div class="container small"> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-10 21:36:46 +08:00
										 |  |  |         <div class="py-m"> | 
					
						
							|  |  |  |             @include('settings.navbar', ['selected' => 'maintenance']) | 
					
						
							| 
									
										
										
										
											2020-11-03 06:47:48 +08:00
										 |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <div class="card content-wrap auto-height"> | 
					
						
							|  |  |  |             <h2 class="list-heading">{{ trans('settings.recycle_bin_permanently_delete') }}</h2> | 
					
						
							|  |  |  |             <p class="text-muted">{{ trans('settings.recycle_bin_destroy_confirm') }}</p> | 
					
						
							|  |  |  |             <form action="{{ url('/settings/recycle-bin/' . $deletion->id) }}" method="post"> | 
					
						
							|  |  |  |                 {!! method_field('DELETE') !!} | 
					
						
							|  |  |  |                 {!! csrf_field() !!} | 
					
						
							|  |  |  |                 <a href="{{ url('/settings/recycle-bin') }}" class="button outline">{{ trans('common.cancel') }}</a> | 
					
						
							|  |  |  |                 <button type="submit" class="button">{{ trans('common.delete_confirm') }}</button> | 
					
						
							|  |  |  |             </form> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  |             @if($deletion->deletable instanceof \BookStack\Entities\Models\Entity) | 
					
						
							| 
									
										
										
										
											2020-11-03 06:47:48 +08:00
										 |  |  |                 <hr class="mt-m"> | 
					
						
							|  |  |  |                 <h5>{{ trans('settings.recycle_bin_destroy_list') }}</h5> | 
					
						
							|  |  |  |                 @include('settings.recycle-bin.deletable-entity-list', ['entity' => $deletion->deletable]) | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | @stop |