41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
<!-- meta tags and other links -->
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="en" data-theme="light">
 | 
						|
 | 
						|
{{-- <x-css css='{!! isset($css) ? $css : "" !!}' /> --}}
 | 
						|
<x-head css='{!! isset($css) ? $css : "" !!}' />
 | 
						|
 | 
						|
<body>
 | 
						|
 | 
						|
    <!-- ..::  header area start ::.. -->
 | 
						|
    <x-sidebar />
 | 
						|
    <!-- ..::  header area end ::.. -->
 | 
						|
 | 
						|
    <main class="dashboard-main">
 | 
						|
 | 
						|
        <!-- ..::  navbar start ::.. -->
 | 
						|
        <x-navbar />
 | 
						|
        <!-- ..::  navbar end ::.. -->
 | 
						|
        <div class="dashboard-main-body">
 | 
						|
 | 
						|
            <!-- ..::  breadcrumb  start ::.. -->
 | 
						|
            <x-breadcrumb title='{{ isset($title) ? $title : "" }}' subTitle='{{ isset($subTitle) ? $subTitle : "" }}' />
 | 
						|
            <!-- ..::  header area end ::.. -->
 | 
						|
 | 
						|
            @yield('content')
 | 
						|
 | 
						|
        </div>
 | 
						|
        <!-- ..::  footer  start ::.. -->
 | 
						|
        <x-footer />
 | 
						|
        <!-- ..::  footer area end ::.. -->
 | 
						|
 | 
						|
    </main>
 | 
						|
 | 
						|
    <!-- ..::  scripts  start ::.. -->
 | 
						|
    <x-script  script='{!! isset($script) ? $script : "" !!}' />
 | 
						|
    <!-- ..::  scripts  end ::.. -->
 | 
						|
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |