file-management-system/resources/views/layout/_default_header_layout.blade.php

45 lines
1.7 KiB
PHP

@extends('layout.master')
@section('content')
<!--begin::App-->
<div class="d-flex flex-column flex-root app-root" id="kt_app_root">
<!--begin::Page-->
<div class="app-page flex-column flex-column-fluid" id="kt_app_page">
@include(config('settings.KT_THEME_LAYOUT_DIR').'/partials/header-layout/_header')
<!--begin::Wrapper-->
<div class="app-wrapper flex-column flex-row-fluid" id="kt_app_wrapper">
<!--begin::Main-->
<div class="app-main flex-column flex-row-fluid" id="kt_app_main">
<!--begin::Content wrapper-->
<div class="d-flex flex-column flex-column-fluid">
@include(config('settings.KT_THEME_LAYOUT_DIR').'/partials/header-layout/_toolbar')
<!--begin::Content-->
<div id="kt_app_content" class="app-content flex-column-fluid">
<!--begin::Content container-->
<div id="kt_app_content_container" class="app-container container-xxl">
{{ $slot }}
</div>
<!--end::Content container-->
</div>
<!--end::Content-->
</div>
<!--end::Content wrapper-->
@include(config('settings.KT_THEME_LAYOUT_DIR').'/partials/header-layout/_footer')
</div>
<!--end:::Main-->
</div>
<!--end::Wrapper-->
</div>
<!--end::Page-->
</div>
<!--end::App-->
@include('partials/_drawers')
@include('partials/_modals')
@include('partials/_scrolltop')
@endsection