12 lines
648 B
PHP
12 lines
648 B
PHP
|
<nav class="navbar main-header navbar-nav navbar-expand bg-ansi-blue">
|
||
|
<h1 class="navbar-brand fg-ansi-white mt-2">{{ $title ?? config('app.name') }}</h1>
|
||
|
|
||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||
|
<span class="navbar-toggler-icon"></span>
|
||
|
</button>
|
||
|
|
||
|
<div class="collapse navbar-collapse pt-3" id="navbarSupportedContent">
|
||
|
<!-- Add icons to the links using the .nav-icon class with font-awesome or any other icon font library -->
|
||
|
@include('layouts.partials.topmenu')
|
||
|
</div>
|
||
|
</nav>
|