feat: export tablar views and fix js stack
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
<div class="container-xl">
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-menu"
|
||||
aria-controls="navbar-menu" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
|
||||
@include('tablar::partials.common.logo')
|
||||
</h1>
|
||||
<div class="navbar-nav flex-row order-md-last">
|
||||
<div class="d-none d-md-flex">
|
||||
@include('tablar::partials.header.theme-mode')
|
||||
@include('tablar::partials.header.notifications')
|
||||
</div>
|
||||
@include('tablar::partials.header.top-right')
|
||||
</div>
|
||||
<div class="collapse navbar-collapse" id="navbar-menu">
|
||||
<div class="d-flex flex-column flex-md-row flex-fill align-items-stretch align-items-md-center">
|
||||
<ul class="navbar-nav">
|
||||
@each('tablar::partials.navbar.dropdown-item', $tablar->menu('sidebar'), 'item')
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,23 @@
|
||||
<div class="container-xl">
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-menu">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
|
||||
@include('tablar::partials.common.logo')
|
||||
</h1>
|
||||
<div class="navbar-nav flex-row order-md-last">
|
||||
|
||||
<div class="nav-item d-none d-md-flex me-3">
|
||||
<div class="btn-list">
|
||||
@include('tablar::partials.header.header-button')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="d-none d-md-flex">
|
||||
@include('tablar::partials.header.theme-mode')
|
||||
@include('tablar::partials.header.notifications')
|
||||
</div>
|
||||
|
||||
@include('tablar::partials.header.top-right')
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,5 @@
|
||||
<a href="#">
|
||||
<img src="{{asset(config('tablar.auth_logo.img.path','assets/logo.svg'))}}" width="110" height="32"
|
||||
alt="{{asset(config('tablar.title','Tablar'))}}"
|
||||
class="navbar-brand-image">
|
||||
</a>
|
||||
@@ -0,0 +1,14 @@
|
||||
<form action="" method="get" autocomplete="off" novalidate>
|
||||
<div class="input-icon">
|
||||
<span class="input-icon-addon">
|
||||
<!-- Download SVG icon from http://tabler-icons.io/i/search -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24"
|
||||
stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round"
|
||||
stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<circle cx="10" cy="10" r="7"/><line
|
||||
x1="21" y1="21" x2="15" y2="15"/></svg>
|
||||
</span>
|
||||
<input type="text" value="" class="form-control" placeholder="Search…"
|
||||
aria-label="Search in website">
|
||||
</div>
|
||||
</form>
|
||||
Reference in New Issue
Block a user