Viewing file: 0ddf24dedadce35271827ed232cafd40e4189955.php (4.22 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<ul class="nav nav-pills nav-sidebar flex-column" data-widget="treeview" role="menu" data-accordion="false"> <!-- Add icons to the links using the .nav-icon class with font-awesome or any other icon font library --> <li class="nav-item"> <a href="<?php echo e(route('customer.dashboard')); ?>" class="nav-link <?php echo e(isSidebarActive('customer.dashboard')); ?>"> <i class="nav-icon fas fa-tachometer-alt"></i> <p> <?php echo e(trans('customer.dashboard')); ?>
</p> </a> </li>
<li class="nav-item"> <a href="<?php echo e(route('customer.order')); ?>" class="nav-link <?php echo e(isSidebarActive('customer.order')); ?>"> <i class="nav-icon fa fa-cart-arrow-down"></i> <p> <?php echo e(trans('admin.order')); ?>
</p> </a> </li> <li class="nav-item mb-1"> <a href="<?php echo e(route('customer.refund.request.index')); ?>" class="nav-link <?php echo e(isSidebarActive('customer.refund.request.index*')); ?>"> <i class="nav-icon fas fa-money-bill-wave"></i> <p> <?php echo e(trans('admin.refund_request')); ?>
</p> </a> </li> <li class="nav-item"> <a href="<?php echo e(route('customer.deposit.index')); ?>" class="nav-link <?php echo e(isSidebarActive('customer.deposit.index')); ?>"> <i class="nav-icon fas fa-money-bill-wave"></i> <p> <?php echo e(trans('customer.deposit')); ?>
</p> </a> </li>
<li class="nav-item"> <a href="<?php echo e(route('customer.ticket.index')); ?>" class="nav-link <?php echo e(isSidebarActive('customer.ticket.index')); ?>"> <i class="nav-icon fa fa-paper-plane"></i> <p> <?php echo e(trans('admin.ticket.ticket')); ?>
</p> </a> </li> <li class="nav-item has-treeview <?php echo e(isSidebarTrue(['customer.report.transaction.list','customer.report.order.list'])? 'menu-open' : ''); ?>"> <a href="#" class="nav-link <?php echo e(isSidebarTrue(['customer.report.transaction.list','customer.report.order.list'])? 'active' : ''); ?>"> <i class="nav-icon fa fa-file"></i> <p> Report <i class="right fas fa-angle-left"></i> </p> </a> <ul class="nav nav-treeview" style="display: <?php echo e(isSidebarTrue(['customer.report.order.list','customer.report.transaction.list'])? 'block': 'none'); ?>;"> <li class="nav-item"> <a href="<?php echo e(route('customer.report.order.list')); ?>" class="nav-link <?php echo e(isSidebarActive('customer.report.order.list')); ?> "> <i class="nav-icon fa fa-cart-plus"></i> <p> <?php echo e(trans('customer.orders')); ?>
</p> </a> </li> <li class="nav-item"> <a href="<?php echo e(route('customer.report.transaction.list')); ?>" class="nav-link <?php echo e(isSidebarActive('customer.report.transaction.list')); ?>"> <i class="nav-icon fa fa-credit-card"></i> <p> <?php echo e(trans('customer.transactions')); ?>
</p> </a> </li> </ul> </li>
<li class="nav-item item-api-token"> <a href="<?php echo e(route('customer.authorization.token.create')); ?>" class="nav-link <?php echo e(isSidebarActive('customer.authorization.token.create')); ?>"> <i class="fas fa-code nav-icon"></i> <p> <?php echo e(trans('customer.developer')); ?>
</p> </a> </li> <li class="nav-item"> <a href="<?php echo e(route('customer.settings.index')); ?>" class="nav-link <?php echo e(isSidebarActive('customer.settings*')); ?>"> <i class="nav-icon fas fa-cog"></i> <p> <?php echo e(trans('customer.settings')); ?>
</p> </a> </li> </ul> <?php /**PATH /home/pcolfjqt/smm.picotech.app/resources/views/layouts/includes/customer_sidebar.blade.php ENDPATH**/ ?>
|