15 lines
		
	
	
	
		
			501 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			501 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html class="h-full bg-grey-lighter">
 | |
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
 | |
|     <link href="{{ mix('/css/app.css') }}" rel="stylesheet">
 | |
|     <script src="{{ mix('/js/app.js') }}" defer></script>
 | |
|     @routes
 | |
| </head>
 | |
| <body class="font-sans leading-none text-grey-darkest antialiased">
 | |
| 
 | |
| <div id="app" data-component="{{ $component }}" data-props="{{ json_encode($props) }}"></div>
 | |
| 
 | |
| </body>
 | |
| </html>
 | 
