akaunting/resources/views/layouts/portal.blade.php

36 lines
730 B
PHP
Raw Normal View History

2019-11-16 10:21:14 +03:00
<html lang="{{ app()->getLocale() }}">
@include('partials.portal.head')
2020-03-03 18:23:26 +03:00
<body id="leftMenu" class="g-sidenav-show g-sidenav-pinned">
2019-11-16 10:21:14 +03:00
@stack('body_start')
2019-12-26 09:43:39 +03:00
@include('partials.portal.menu')
2019-11-16 10:21:14 +03:00
2019-12-26 09:43:39 +03:00
<div class="main-content" id="panel">
2019-11-16 10:21:14 +03:00
2019-12-26 09:43:39 +03:00
@include('partials.portal.navbar')
2019-11-16 10:21:14 +03:00
2019-12-26 09:43:39 +03:00
<div id="main-body">
2019-11-16 10:21:14 +03:00
2019-12-26 09:43:39 +03:00
@include('partials.portal.header')
2019-11-16 10:21:14 +03:00
2019-12-26 09:43:39 +03:00
<div class="container-fluid content-layout mt--6">
2019-11-16 10:21:14 +03:00
2019-12-26 09:43:39 +03:00
@include('partials.portal.content')
2019-11-16 10:21:14 +03:00
2019-12-26 09:43:39 +03:00
@include('partials.portal.footer')
2019-11-16 10:21:14 +03:00
</div>
</div>
2019-12-26 09:43:39 +03:00
</div>
2019-11-16 10:21:14 +03:00
@stack('body_end')
@include('partials.portal.scripts')
</body>
</html>