Added Account report, renamed Product to Service List

This commit is contained in:
Deon George
2023-05-09 16:31:44 +09:00
parent f3ecc12494
commit b3539e6c7e
5 changed files with 126 additions and 10 deletions

View File

@@ -119,15 +119,23 @@
</ul>
</li>
<li class="nav-item has-treeview @if(preg_match('#^a/report/(products)#',$path))menu-open @else menu-closed @endif">
<a href="#" class="nav-link @if(preg_match('#^a/report/(products)#',$path)) active @endif">
<li class="nav-item has-treeview @if(preg_match('#^a/report/(accounts|services)#',$path))menu-open @else menu-closed @endif">
<a href="#" class="nav-link @if(preg_match('#^a/report/(accounts|services)#',$path)) active @endif">
<i class="nav-icon fas fa-list"></i> <p>REPORT<i class="fas fa-angle-left right"></i></p>
</a>
<ul class="nav nav-treeview">
<li class="nav-item">
<a href="{{ url('a/report/products') }}" class="nav-link @if(preg_match('#^a/report/products$#',$path))active @endif">
<i class="nav-icon fas fa-barcode"></i> <p>Products</p>
<a href="{{ url('a/report/accounts') }}" class="nav-link @if(preg_match('#^a/report/accounts#',$path))active @endif">
<i class="nav-icon fas fa-users"></i> <p>Accounts</p>
</a>
</li>
</ul>
<ul class="nav nav-treeview">
<li class="nav-item">
<a href="{{ url('a/report/services') }}" class="nav-link @if(preg_match('#^a/report/services#',$path))active @endif">
<i class="nav-icon fas fa-barcode"></i> <p>Services</p>
</a>
</li>
</ul>