30 lines
		
	
	
		
			656 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			656 B
		
	
	
	
		
			PHP
		
	
	
	
| @extends('sidebar-layout')
 | |
| 
 | |
| @section('sidebar')
 | |
|     <div class="card">
 | |
|         <h3>@icon('info') {{ trans('common.details') }}</h3>
 | |
|         <div class="body text-small text-muted">
 | |
|             @include('partials.entity-meta', ['entity' => $revision])
 | |
|         </div>
 | |
|     </div>
 | |
| @stop
 | |
| 
 | |
| @section('body')
 | |
| 
 | |
|     <div class="container">
 | |
|         <div class="row">
 | |
|             <div class="col-md-9">
 | |
|                 <div class="page-content page-revision">
 | |
|                     @include('pages.page-display')
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
| @stop
 | |
| 
 | |
| @section('scripts')
 | |
|     <script>
 | |
|         setupPageShow(null);
 | |
|     </script>
 | |
| @stop |