2018-04-23 07:45:21 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2019-02-08 12:42:58 +00:00
|
|
|
@section('htmlheader')
|
|
|
|
@include('adminlte::layouts.partials.htmlheader')
|
|
|
|
@show
|
2018-04-23 07:45:21 +00:00
|
|
|
|
2019-05-16 01:15:49 +00:00
|
|
|
<body class="hold-transition sidebar-mini @if (Cookie::get('toggleState') === 'closed') {{ 'sidebar-collapse' }} @endif">
|
2019-02-08 12:42:58 +00:00
|
|
|
<div id="app">
|
|
|
|
<div class="wrapper">
|
|
|
|
@include('adminlte::layouts.partials.mainheader')
|
2018-04-23 07:45:21 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
@include('adminlte::layouts.partials.sidebar')
|
2018-04-23 07:45:21 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
<!-- Content Wrapper. Contains page content -->
|
|
|
|
<div class="content-wrapper">
|
2018-04-23 07:45:21 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
@include('adminlte::layouts.partials.contentheader')
|
2018-04-23 07:45:21 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
<!-- Main content -->
|
|
|
|
<section class="content">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<!-- Your Page Content Here -->
|
|
|
|
@yield('main-content')
|
|
|
|
</div>
|
|
|
|
</section><!-- /.content -->
|
2018-04-23 07:45:21 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
</div><!-- /.content-wrapper -->
|
2018-04-23 07:45:21 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
@isset($controlsidebar)
|
|
|
|
@include('adminlte::layouts.partials.controlsidebar')
|
|
|
|
@endisset
|
2018-04-23 07:45:21 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
@include('adminlte::layouts.partials.footer')
|
|
|
|
</div><!-- ./wrapper -->
|
|
|
|
</div> <!-- ./app -->
|
2018-04-23 07:45:21 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
@section('scripts')
|
|
|
|
@include('adminlte::layouts.partials.scripts')
|
2018-05-24 02:28:30 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
{{-- Scripts --}}
|
|
|
|
{!! Asset::scripts() !!}
|
2018-05-24 02:28:30 +00:00
|
|
|
|
2019-02-08 12:42:58 +00:00
|
|
|
@yield('page-scripts')
|
|
|
|
@show
|
|
|
|
</body>
|
2018-04-23 07:45:21 +00:00
|
|
|
</html>
|