22 lines
		
	
	
		
			349 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			349 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <html lang="{{ app()->getLocale() }}">
 | |
| 
 | |
|     @include('partials.admin.head')
 | |
| 
 | |
|     <style type="text/css">
 | |
|         * {
 | |
|             font-family: DejaVu Sans, sans-serif !important;
 | |
|         }
 | |
|     </style>
 | |
| 
 | |
|     <body onload="window.print();">
 | |
| 
 | |
|         @stack('body_start')
 | |
| 
 | |
|             @yield('content')
 | |
| 
 | |
|         @stack('body_end')
 | |
| 
 | |
|     </body>
 | |
| 
 | |
| </html>
 |