File: /www/wwwroot/www.shooperm.com/storage/framework/views/1ac76f7e2ee4f8aea904c46c2fa5bd62eaade154.php
<?php if(permissionCheck('setup_module') || permissionCheck('location_manage')): ?>
<?php
$setup_location_admin = false;
$setup_admin = false;
if(request()->is('language') || request()->is('setup/*'))
{
$setup_admin = true;
}
if (strpos(request()->getUri(),'/location') != false) {
$setup_location_admin = true;
}
?>
<li class="<?php echo e($setup_admin ?'mm-active' : ''); ?> sortable_li" data-position="<?php echo e(menuManagerCheck(1,18)->position); ?>" data-status="<?php echo e(menuManagerCheck(1,18)->status); ?>">
<a href="javascript:;" class="has-arrow" aria-expanded="<?php echo e($setup_admin ? 'true' : 'false'); ?>">
<div class="nav_icon_small">
<span class="fas fa-wrench"></span>
</div>
<div class="nav_title">
<span><?php echo e(__('setup.setup')); ?></span>
</div>
</a>
<ul>
<?php echo $__env->make('language::menu', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php if(permissionCheck('currencies.index') && menuManagerCheck(2,18,'currencies.index')->status == 1): ?>
<li data-position="<?php echo e(menuManagerCheck(2,18,'currencies.index')->position); ?>">
<a href="<?php echo e(route('currencies.index')); ?>" <?php if(request()->is('setup/currencies')): ?> class="active" <?php endif; ?>><?php echo e(__('general_settings.currency_list')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('tags.index') && menuManagerCheck(2,18,'tags.index')->status == 1): ?>
<li data-position="<?php echo e(menuManagerCheck(2,18,'tags.index')->position); ?>">
<a href="<?php echo e(route('tags.index')); ?>" <?php if(request()->is('setup/tags')): ?> class="active" <?php endif; ?>><?php echo e(__('common.tag')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('location_manage') && menuManagerCheck(2,18,'location_manage')->status == 1): ?>
<li class="<?php echo e($setup_location_admin ?'mm-active' : ''); ?>" data-position="<?php echo e(menuManagerCheck(2,18,'location_manage')->position); ?>">
<a href="javascript:void(0)" class="has-arrow" aria-expanded="<?php echo e($setup_location_admin ? 'true' : 'false'); ?>">
<div class="nav_title">
<span><?php echo e(__('setup.location')); ?></span>
</div>
</a>
<ul class="<?php echo e($setup_location_admin ? 'mm-collapse mm-show' : ''); ?>">
<?php if(permissionCheck('setup.country.index')): ?>
<li>
<a href="<?php echo e(route('setup.country.index')); ?>" <?php if(request()->is('setup/location/country')): ?> class="active" <?php endif; ?>> <?php echo e(__('common.country')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('setup.state.index')): ?>
<li>
<a href="<?php echo e(route('setup.state.index')); ?>" <?php if(request()->is('setup/location/state')): ?> class="active" <?php endif; ?>> <?php echo e(__('common.state')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('setup.city.index')): ?>
<li>
<a href="<?php echo e(route('setup.city.index')); ?>" <?php if(request()->is('setup/location/city')): ?> class="active" <?php endif; ?>> <?php echo e(__('common.city')); ?></a>
</li>
<?php endif; ?>
</ul>
</li>
<?php endif; ?>
</ul>
</li>
<?php endif; ?>
<?php /**PATH /www/wwwroot/www.shooperm.com/Modules/Setup/Resources/views/menu.blade.php ENDPATH**/ ?>