feat: export tablar views and fix js stack

This commit is contained in:
2026-05-01 13:04:37 -04:00
parent 4bd0ec6e35
commit 46c88ed22a
52 changed files with 2235 additions and 0 deletions
@@ -0,0 +1,21 @@
@php
$stickyTopClass = config('tablar.sticky_top_nav_bar') ? 'sticky-top' : '';
$layoutData['cssClasses'] = 'navbar navbar-expand-md ' . $stickyTopClass . ' d-print-none';
@endphp
@section('body')
<body>
<div class="page">
<!-- Top Navbar -->
@include('tablar::partials.navbar.condensed-top')
<div class="page-wrapper">
<!-- Page Content -->
@hasSection('content')
@yield('content')
@endif
<!-- Page Error -->
@include('tablar::error')
@include('tablar::partials.footer.bottom')
</div>
</div>
</body>
@endsection