update sidebar
This commit is contained in:
@@ -1,6 +1,17 @@
|
||||
@extends('layouts.dashb5')
|
||||
@section('title', 'Alliance Services - Dashboard')
|
||||
|
||||
@section('content-navigation')
|
||||
<div class="row"> <!-- This section creates the links at the top separated by a / -->
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item inactive" aria-current="#">Overview</li>
|
||||
<li class="breadcrumb-item active" aria-current="#">Dashboard</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<div class="row my-4">
|
||||
<div class="col-12 col-md-6 col-lg-3 mb-4 mb-lg-0">
|
||||
@@ -163,16 +174,3 @@
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('footer')
|
||||
<div class="row">
|
||||
<footer class="pt-5 d-flex justify-content-between">
|
||||
<p class="col-md-4 mb-0 text-body-secondary">© Alliance-Services</p>
|
||||
<ul class="nav col-md-4 justify-content-end">
|
||||
<li class="nav-item"><a href="/dashboard" class="nav-link px-2 text-body-secondary">Home</a></li>
|
||||
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">FAQs</a></li>
|
||||
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">About</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</div>
|
||||
@endsection
|
||||
@@ -19,28 +19,21 @@
|
||||
@include('layouts.sidebar')
|
||||
<!-- End aside -->
|
||||
|
||||
<!-- Content of the main body - heres the main content like graph, tables, etc... -->
|
||||
<main class="col-sm-10 bg-body-tertiary" id="main">
|
||||
<div class="container-fluid">
|
||||
<div class="row"> <!-- This section creates the links at the top separated by a / -->
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item inactive" aria-current="#">Overview</li>
|
||||
<li class="breadcrumb-item active" aria-current="/dashboard">Dashboard</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
<!-- This section yields to the content -->
|
||||
@yield('content')
|
||||
|
||||
<!-- Footer for end section -->
|
||||
@hasSection('footer')
|
||||
@yield('footer')
|
||||
@endif
|
||||
<!-- End footer -->
|
||||
</div>
|
||||
</main>
|
||||
<!-- end main -->
|
||||
<!-- Content of the main body - heres the main content like graph, tables, etc... -->
|
||||
<main class="col-sm-10 bg-body-tertiary" id="main">
|
||||
<div class="container-fluid">
|
||||
@hasSection('content-navigation')
|
||||
@yield('content-navigation')
|
||||
@endif
|
||||
<!-- This section yields to the content -->
|
||||
@yield('content')
|
||||
|
||||
<!-- Footer for end section -->
|
||||
@include('layouts.footer')
|
||||
<!-- End footer -->
|
||||
</div>
|
||||
</main>
|
||||
<!-- end main -->
|
||||
|
||||
<!-- offcanvas - heres is a copy of aside and must be the same as navbar section -->
|
||||
<!-- End offcanvas (Put back if needed later. -->
|
||||
|
||||
Reference in New Issue
Block a user