31 lines
631 B
PHP
31 lines
631 B
PHP
<!DOCTYPE html>
|
|
<html lang="en" data-theme="light">
|
|
|
|
{{-- <x-css css='{!! isset($css) ? $css : "" !!}' /> --}}
|
|
<x-head css='{!! isset($css) ? $css : "" !!}' />
|
|
|
|
<body>
|
|
|
|
@include('components.sidebar-bengkel')
|
|
|
|
<main class="dashboard-main">
|
|
|
|
<x-navbar />
|
|
<div class="dashboard-main-body">
|
|
|
|
{{-- <x-breadcrumb title='{{ isset($title) ? $title : "" }}' subTitle='{{ isset($subTitle) ? $subTitle : "" }}' /> --}}
|
|
|
|
@yield('content')
|
|
|
|
</div>
|
|
<x-footer />
|
|
|
|
</main>
|
|
|
|
<x-script script='{!! isset($script) ? $script : "" !!}' />
|
|
@stack('scripts')
|
|
|
|
</body>
|
|
|
|
</html>
|