feat: export tablar views and fix js stack
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
@section('body')
|
||||
<body class="layout-boxed">
|
||||
<div class="page">
|
||||
<!-- Top Navbar -->
|
||||
@include('tablar::partials.navbar.topbar')
|
||||
<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
|
||||
@@ -0,0 +1,21 @@
|
||||
@php
|
||||
$layoutData['cssClasses'] = 'navbar navbar-vertical navbar-expand-lg';
|
||||
@endphp
|
||||
@section('body')
|
||||
<body>
|
||||
<div class="page">
|
||||
<!-- Sidebar -->
|
||||
@include('tablar::partials.navbar.sidebar')
|
||||
@include('tablar::partials.header.sidebar-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>
|
||||
@stop
|
||||
@@ -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
|
||||
@@ -0,0 +1,21 @@
|
||||
@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
|
||||
@@ -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 class="layout-fluid">
|
||||
<div class="page">
|
||||
<!-- Top Navbar -->
|
||||
@include('tablar::partials.navbar.topbar')
|
||||
<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
|
||||
@@ -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.topbar')
|
||||
<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
|
||||
@@ -0,0 +1,11 @@
|
||||
@section('body')
|
||||
<body class="body-marketing body-gradient">
|
||||
@include('tablar::partials.navbar.top-bar')
|
||||
@hasSection('content')
|
||||
@yield('content')
|
||||
@endif
|
||||
<!-- Page Error -->
|
||||
@include('tablar::error')
|
||||
@include('tablar::partials.footer.marketing-bottom')
|
||||
</body>
|
||||
@stop
|
||||
@@ -0,0 +1,20 @@
|
||||
@php
|
||||
$layoutData['cssClasses'] = 'navbar navbar-expand-md navbar-overlap d-print-none';
|
||||
@endphp
|
||||
@section('body')
|
||||
<body>
|
||||
<div class="page">
|
||||
<!-- Top Navbar -->
|
||||
@include('tablar::partials.navbar.overlap-topbar')
|
||||
<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
|
||||
@@ -0,0 +1,22 @@
|
||||
@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
|
||||
@@ -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.topbar')
|
||||
<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
|
||||
@@ -0,0 +1,20 @@
|
||||
@php
|
||||
$layoutData['cssClasses'] = 'navbar navbar-vertical navbar-right navbar-expand-lg';
|
||||
@endphp
|
||||
@section('body')
|
||||
<body>
|
||||
<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
|
||||
@@ -0,0 +1,20 @@
|
||||
@php
|
||||
$layoutData['cssClasses'] = 'navbar navbar-vertical navbar-expand-lg navbar-transparent';
|
||||
@endphp
|
||||
@section('body')
|
||||
<body>
|
||||
<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
|
||||
@@ -0,0 +1,20 @@
|
||||
@php
|
||||
$layoutData['cssClasses'] = 'navbar navbar-vertical navbar-expand-lg';
|
||||
@endphp
|
||||
@section('body')
|
||||
<body>
|
||||
<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
|
||||
Reference in New Issue
Block a user