HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
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**/ ?>