File: /www/wwwroot/www.shooperm.com/storage/framework/views/a77f7d21db6988d35be57a4dd70f41ac07ec3c0c.php
<?php if(permissionCheck('wallet_manage')): ?>
<?php
$wallet_manage_admin = false;
if(request()->is('wallet/online-recharge-requests') || request()->is('wallet/bank-recharge-requests') || request()->is('wallet/withdraw-requests') != false || request()->is('wallet/recharge-offline-index') || request()->is('wallet/wallet-configuration'))
{
$wallet_manage_admin = true;
}
?>
<li class="<?php echo e($wallet_manage_admin ?'mm-active' : ''); ?> sortable_li" data-position="<?php echo e(menuManagerCheck(1,8)->position); ?>" data-status="<?php echo e(menuManagerCheck(1,8)->status); ?>">
<a href="javascript:;" class="has-arrow" aria-expanded="<?php echo e($wallet_manage_admin ? 'true' : 'false'); ?>">
<div class="nav_icon_small">
<span class="fas fa-wallet"></span>
</div>
<div class="nav_title">
<span><?php echo e(__('wallet.wallet_manage')); ?></span>
</div>
</a>
<ul id="wallet_manage_ul">
<?php if(permissionCheck('wallet_recharge.get-data') && menuManagerCheck(2,8,'wallet_recharge.get-data')->status == 1): ?>
<li data-position="<?php echo e(menuManagerCheck(2,8,'wallet_recharge.get-data')->position); ?>">
<a href="<?php echo e(route('wallet_recharge.index')); ?>" <?php if(request()->is('wallet/online-recharge-requests')): ?> class="active" <?php endif; ?>><?php echo e(__('wallet.online_recharge')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('bank_recharge.index') && menuManagerCheck(2,8,'bank_recharge.index')->status == 1): ?>
<li data-position="<?php echo e(menuManagerCheck(2,8,'bank_recharge.index')->position); ?>">
<a href="<?php echo e(route('bank_recharge.index')); ?>" <?php if(request()->is('wallet/bank-recharge-requests')): ?> class="active" <?php endif; ?>><?php echo e(__('wallet.bank_recharge')); ?></a>
</li>
<?php endif; ?>
<?php if(isModuleActive('MultiVendor') && permissionCheck('wallet.withdraw_requests.get_data') && menuManagerCheck(2,8,'wallet.withdraw_requests.get_data')->status == 1): ?>
<li data-position="<?php echo e(menuManagerCheck(2,8,'wallet.withdraw_requests.get_data')->position); ?>">
<a href="<?php echo e(route('wallet.withdraw_requests')); ?>" <?php if(request()->is('wallet/withdraw-requests')): ?> class="active" <?php endif; ?>><?php echo e(__('wallet.withdraw_requests')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('wallet_recharge.offline_index_get_data') && menuManagerCheck(2,8,'wallet_recharge.offline_index_get_data')->status == 1): ?>
<li data-position="<?php echo e(menuManagerCheck(2,8,'wallet_recharge.offline_index_get_data')->position); ?>">
<a href="<?php echo e(route('wallet_recharge.offline_index')); ?>" <?php if(request()->is('wallet/recharge-offline-index')): ?> class="active" <?php endif; ?>><?php echo e(__('wallet.offline_recharge')); ?> </a>
</li>
<?php endif; ?>
<?php if(permissionCheck('wallet.wallet_configuration') && menuManagerCheck(2,8,'wallet.wallet_configuration')->status == 1): ?>
<li data-position="<?php echo e(menuManagerCheck(2,8,'wallet.wallet_configuration')->position); ?>">
<a href="<?php echo e(route('wallet.wallet_configuration')); ?>" <?php if(request()->is('wallet/wallet-configuration')): ?> class="active" <?php endif; ?>><?php echo e(__('common.configuration')); ?></a>
</li>
<?php endif; ?>
</ul>
</li>
<?php endif; ?>
<?php /**PATH /www/wwwroot/www.shooperm.com/Modules/Wallet/Resources/views/menu.blade.php ENDPATH**/ ?>