34 lines
838 B
PHP
34 lines
838 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>@yield('title') || {{ config('app.name') }}</title>
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
|
|
|
|
@include('includes.main-css')
|
|
</head>
|
|
|
|
<body class="c-app">
|
|
@include('layouts.sidebar')
|
|
|
|
<div class="c-wrapper">
|
|
<header class="c-header c-header-light c-header-fixed">
|
|
@include('layouts.header')
|
|
<div class="c-subheader justify-content-between px-3">
|
|
@yield('breadcrumb')
|
|
</div>
|
|
</header>
|
|
|
|
<div class="c-body">
|
|
<main class="c-main">
|
|
@yield('content')
|
|
</main>
|
|
</div>
|
|
|
|
@include('layouts.footer')
|
|
</div>
|
|
|
|
@include('includes.main-js')
|
|
</body>
|
|
</html>
|