forked from TFMM/silent-auction
23 lines
615 B
PHP
23 lines
615 B
PHP
@php
|
|
$layoutData['cssClasses'] = 'navbar navbar-expand-md sticky-top d-print-none';
|
|
@endphp
|
|
@section('body')
|
|
<body>
|
|
<div class="page">
|
|
<!-- Top Navbar -->
|
|
<div class="sticky-top">
|
|
@include('tablar::partials.navbar.topbar')
|
|
</div>
|
|
<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
|