forked from TFMM/silent-auction
22 lines
610 B
PHP
22 lines
610 B
PHP
@php
|
|
$layoutData['theme'] = 'dark';
|
|
$layoutData['cssClasses'] = 'navbar navbar-vertical navbar-expand-lg';
|
|
@endphp
|
|
@section('body')
|
|
<body class=" layout-fluid">
|
|
<div class="page">
|
|
<!-- Sidebar -->
|
|
@include('tablar::partials.navbar.sidebar')
|
|
<div class="page-wrapper">
|
|
<!-- Page Content -->
|
|
@hasSection('content')
|
|
@yield('content')
|
|
@endif
|
|
<!-- Page Error -->
|
|
@include('tablar::error')
|
|
{{-- @include('tablar::partials.footer.bottom') --}}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
@stop
|