Viewing file: 61e44b5c063a9c65cadfe0411aef65e4ad3edd33.php (4.07 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html> <html lang="<?php echo e(App::getlocale()); ?>"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <?php echo SEO::generate(); ?>
<?php echo JsonLdMulti::generate(); ?>
<meta name="csrf-token" content="<?php echo e(csrf_token()); ?>"> <!--===================================== CSS LINK PART START =======================================--> <!-- FOR PAGE ICON --> <link rel="icon" href="<?php echo e(asset('uploads/'.domain_info('user_id').'/favicon.ico')); ?>"> <?php Helper::autoload_site_data(); ?> <style type="text/css"> :root { --main-theme-color: <?php echo e(Cache::get(domain_info('user_id').'theme_color','#dc3545')); ?>; } </style> <!-- FOR FONT ICON --> <link rel="stylesheet" href="<?php echo e(asset('assets/css/fontawsome/all.min.css')); ?>"> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700;800;900&display=swap"> <!-- FOR SLICK SLIDER --> <link rel="stylesheet" href="<?php echo e(asset('frontend/bigbag/css/slick.css')); ?>">
<!-- FOR BOOTSTRAP --> <link rel="stylesheet" href="<?php echo e(asset('frontend/bigbag/css/bootstrap.min.css')); ?>"> <?php echo $__env->yieldPushContent('css'); ?> <!-- FOR STYLE --> <link rel="stylesheet" href="<?php echo e(asset('frontend/bigbag/css/main.css')); ?>"> <!--===================================== CSS LINK PART END =======================================--> <?php echo e(load_header()); ?>
</head> <body>
<?php echo $__env->make('frontend/bigbag/layouts/header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php echo $__env->yieldContent('content'); ?> <?php echo $__env->make('frontend/bigbag/layouts/footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo e(load_whatsapp()); ?>
<?php $currency_info=currency_info(); ?> <input type="hidden" id="currency_position" value="<?php echo e($currency_info['currency_position']); ?>"> <input type="hidden" id="currency_name" value="<?php echo e($currency_info['currency_name']); ?>"> <input type="hidden" id="currency_icon" value="<?php echo e($currency_info['currency_icon']); ?>"> <input type="hidden" id="preloader" value="<?php echo e(asset('uploads/preload.webp')); ?>"> <input type="hidden" id="base_url" value="<?php echo e(url('/')); ?>"> <input type="hidden" id="theme_color" value="<?php echo e(Cache::get(domain_info('user_id').'theme_color','#dc3545')); ?>">
<!--===================================== JS LINK PART START =======================================--> <!-- FOR BOOTSTRAP --> <script src="<?php echo e(asset('frontend/bigbag/js/jquery-3.5.1.min.js')); ?>"></script> <script src="<?php echo e(asset('assets/js/jquery.unveil.js')); ?>"></script> <script src="<?php echo e(asset('frontend/bigbag/js/cart.js?v=1.1')); ?>"></script> <script src="<?php echo e(asset('frontend/bigbag/js/popper.min.js')); ?>"></script> <script src="<?php echo e(asset('frontend/bigbag/js/bootstrap.min.js')); ?>"></script> <!-- FOR SLICK SLIDER --> <script src="<?php echo e(asset('frontend/bigbag/js/slick.min.js')); ?>"></script> <script src="<?php echo e(asset('frontend/bigbag/js/slick.js')); ?>"></script> <!-- FOR NICESCROLL --> <script src="<?php echo e(asset('frontend/bigbag/js/nicescroll.min.js')); ?>"></script>
<?php echo $__env->yieldPushContent('js'); ?> <!-- FOR INTERACTION --> <script src="<?php echo e(asset('frontend/bigbag/js/main.js')); ?>"></script> <?php echo e(load_footer()); ?>
<!--===================================== JS LINK PART END =======================================--> </body> </html><?php /**PATH /Volumes/my-works/laravel/dokans/script/resources/views/frontend/bigbag/layouts/app.blade.php ENDPATH**/ ?>
|