fix app.blade.php
This commit is contained in:
parent
4281e1dc99
commit
6227d7f0eb
|
@ -10,24 +10,17 @@
|
|||
</title>
|
||||
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('css/custom.css') }}">
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="icon" type="image/png" href="{{ asset('img/favicon_unioil.ico') }}">
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
|
||||
integrity="sha512-..." crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<div class="wrapper">
|
||||
|
||||
|
||||
<div class="body-overlay"></div>
|
||||
|
||||
@php
|
||||
|
@ -103,7 +96,6 @@
|
|||
<i class="fa-solid fa-wallet" style="padding-top:3px"></i><span>Top-Up</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<!-- About Us -->
|
||||
<li class="dropdown {{ in_array(Request::path(), $aboutUs) }}">
|
||||
<a href="#pageSubmenu3" data-toggle="collapse"
|
||||
|
@ -121,7 +113,6 @@
|
|||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<!-- Reports -->
|
||||
<li class="dropdown {{ in_array(Request::path(), $reports) }}">
|
||||
<a href="#pageSubmenu4" data-toggle="collapse"
|
||||
|
@ -145,14 +136,12 @@
|
|||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<!-- Static -->
|
||||
<li class="{{ Request::is('system-parameters') ? 'active' : '' }}">
|
||||
<a href="{{ route('system-parameters') }}" style="display:flex">
|
||||
<i class="fa-solid fa-sliders" style="padding-top:3px"></i><span>System Parameters</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<!-- Station Locator -->
|
||||
<li class="dropdown {{ in_array(Request::path(), $stationLocator) }}">
|
||||
<a href="#pageSubmenu5" data-toggle="collapse"
|
||||
|
@ -175,36 +164,23 @@
|
|||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Page Content -->
|
||||
<div id="content">
|
||||
|
||||
<div class="top-navbar">
|
||||
<nav class="navbar navbar-expand-lg" style="background-color:rgba(231, 70, 16, 0.84)">
|
||||
<div class="container-fluid">
|
||||
|
||||
<button type="button" id="sidebarCollapse" class="d-xl-block d-lg-block d-md-mone d-none">
|
||||
<span class="fa-solid fa-arrow-left"></span>
|
||||
</button>
|
||||
|
||||
|
||||
|
||||
<button class="d-inline-block d-lg-none ml-auto more-button" type="button"
|
||||
data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false"
|
||||
aria-label="Toggle navigation">
|
||||
<i class="fas fa-ellipsis-v"></i>
|
||||
</button>
|
||||
|
||||
|
||||
<div class="collapse navbar-collapse d-lg-block d-xl-block d-sm-none d-md-none d-none"
|
||||
id="navbarSupportedContent">
|
||||
<ul class="nav navbar-nav ml-auto">
|
||||
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle d-flex align-items-center gap-2" href="#"
|
||||
role="button" data-toggle="dropdown">
|
||||
|
@ -228,21 +204,13 @@
|
|||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="main-content container-xxl">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="card" style="min-height: 500px;">
|
||||
|
@ -252,38 +220,16 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="js/jquery-3.3.1.slim.min.js"></script>
|
||||
<script src="js/popper.min.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
<script src="js/jquery-3.3.1.min.js"></script>
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('#sidebarCollapse').on('click', function() {
|
||||
|
@ -294,14 +240,8 @@
|
|||
$('.more-button,.body-overlay').on('click', function() {
|
||||
$('#sidebar,.body-overlay').toggleClass('show-nav');
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
|
@ -8,23 +8,7 @@
|
|||
<i class="fa-solid fa-users" style="color:gray;"> User Management</i>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p>This is the User Management page content.This is the User Management page content.This is the User Management
|
||||
page content.This is the User Management page content.This is the User Management page content.This is the
|
||||
User Management page content.This is the User Management page content.This is the User Management page
|
||||
content.This is the User Management page content.This is the User Management page content.This is the User
|
||||
Management page content.This is the User Management page content.This is the User Management page
|
||||
content.This is the User Management page content.This is the User Management page content.This is the User
|
||||
Management page content.This is the User Management page content.This is the User Management page
|
||||
content.This is the User Management page content.This is the User Management page content.This is the User
|
||||
Management page content.This is the User Management page content.This is the User Management page
|
||||
content.This is the User Management page content.This is the User Management page content.This is the User
|
||||
Management page content.This is the User Management page content.This is the User Management page
|
||||
content.This is the User Management page content.This is the User Management page content.This is the User
|
||||
Management page content.This is the User Management page content.This is the User Management page
|
||||
content.This is the User Management page content.This is the User Management page content.This is the User
|
||||
Management page content.This is the User Management page content.This is the User Management page
|
||||
content.This is the User Management page content.This is the User Management page content.This is the User
|
||||
Management page content.This is the User Management page content.This is the User Management page content.
|
||||
<p>This is the User Management page content.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue