HEX
Server: LiteSpeed
System: Linux sv4.hami.host 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: armgroup (1008)
PHP: 8.2.32
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open, mail, socket_create, socket_create_listen, socket_create_pair, link, dl, openlog, syslog, stream_socket_server, curl_multi_init
Upload Files
File: /home/armgroup/libs/storage/framework/views/096276343eb9f34ebcc549fc01b96bece6d9de06.php
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="theme-color" content="#f5a11b" />
    <?php echo SEO::generate(); ?>


    <meta name="og:site_name" content="<?php echo e(settings('title')); ?>"/>
    <meta name="robots" content="index,follow" />
    <meta name="geo.region" content="IR-07" />
    <meta name="twitter:card" content="summary_large_image" />
    <meta property="og:locale" content=fa_IR />
    <meta name="og:url" content="<?php echo e(url()->current()); ?>">
    <meta name="og:type" content="website">
    <?php echo $__env->yieldContent('meta'); ?>

    <link rel="apple-touch-icon" sizes="180x180" href="<?php echo e(asset('apple-touch-icon.png')); ?>">
    <link rel="icon" type="image/png" sizes="32x32" href="<?php echo e(asset('favicon-32x32.png')); ?>">
    <link rel="icon" type="image/png" sizes="16x16" href="<?php echo e(asset('favicon-16x16.png')); ?>">
    <link rel="manifest" href="<?php echo e(asset('site.webmanifest')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('css/frontend-fonts.css')); ?>" />
    <link rel="stylesheet" href="<?php echo e(mix('css/app.css')); ?>" />
    <link rel="stylesheet" href="<?php echo e(asset('css/main.min.css')); ?>" />
    <link rel="stylesheet" href="<?php echo e(asset('css/style.css?v=1.1')); ?>" />
    <link rel="stylesheet" href="<?php echo e(asset('css/style2.css')); ?>" />
    <script src="https://kit.fontawesome.com/f595c78486.js" crossorigin="anonymous"></script>
    
    <style>.iziToast-rtl, .iziToast { font-family: <?php echo e(config('frontend.font_family')); ?> !important;}</style>
    <?php echo \Livewire\Livewire::styles(); ?>

    <?php echo $__env->yieldContent('header'); ?>
    <?php echo settings('header-tags'); ?>

</head>
<body>
    <div class="page container-fluid p-0">
        <form id="logout-form" action="<?php echo e(route('logout')); ?>" method="POST" style="display: none;">
            <?php echo csrf_field(); ?>
        </form>

        <?php echo $__env->make('layouts.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>

        <?php echo $__env->yieldContent('content'); ?>

        <?php echo $__env->make('layouts.footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    </div>
    <script src="<?php echo e(asset('js/main-min.js')); ?>"></script>
    <script src="<?php echo e(mix('js/app.js')); ?>"></script>
    <script src="<?php echo e(asset('js/script.js')); ?>"></script>
    <script src="<?php echo e(asset('js/main.js')); ?>"></script>
  
    <?php echo $__env->make('layouts.iziToast', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    <?php echo \Livewire\Livewire::scripts(); ?>

    <script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
    <script>
        Livewire.on('updateTotalCartPrice', function(total_price, count) {
            if(document.getElementById("total-price")) {
                $('#total-price').html(total_price);
            }

            $('.header-shop-count').html(count);
        });
        Livewire.on('favoritesChanged', function(count) {
            $('.header-fav-count').html(count);
        });
        window.addEventListener('showIziToast', event => {
            iziToast[event.detail.status]({
                message: event.detail.message,
                title: event.detail.title,
                position: event.detail.position,
                zindex: 9999999999999
            });
        });
        
        // const showSwalListener = (event) => {
        //     const swalWithBootstrapButtons = Swal.mixin({
        //         customClass: {
        //             confirmButton: 'btn btn-success',
        //             cancelButton: 'btn btn-danger'
        //         },
        //         buttonsStyling: false
        //     });
        
        //     swalWithBootstrapButtons.fire({
        //         icon: event.detail.status,
        //         title: event.detail.title,
        //         text: event.detail.message,
        //         showCancelButton: true,
        //         confirmButtonText: event.detail.confrirmText,
        //         cancelButtonText: event.detail.cancleText,
        //         reverseButtons: false
        //     }).then((result) => {
        //         if (result.value) {
        //             window.location.href = event.detail.confirmLink;
        //         }
        //     });
        // };
        
        // window.addEventListener('showSwal', showSwalListener);
        
        window.addEventListener('showSwal', function(event) {
            Swal.fire({
                title: event.detail.title,
                html: event.detail.html,
                showCancelButton: true,
                confirmButtonText: 'ادامه',
                cancelButtonText: 'بعداً',
                focusConfirm: false,
                preConfirm: () => {
                    const checkbox = document.getElementById('go_complete');
                    return checkbox ? checkbox.checked : false; 
                }
            }).then((result) => {
                if (result.isConfirmed) {
                    const checked = result.value;
                    if (checked) {
                        window.location.href = event.detail.confirmUrlChecked;
                    } else {
                        window.location.href = event.detail.confirmUrlUnchecked;
                    }
                } else if (result.dismiss === Swal.DismissReason.cancel) {
                    window.location.href = event.detail.cancelUrl;
                }
            });
        });

        const observer = lozad(); // lazy loads elements with default selector as '.lozad'
        observer.observe();
    </script>
    <script>
        document.addEventListener('contextmenu', function (e) {
            e.preventDefault();
        });
    </script>
    <?php echo $__env->yieldContent('footer'); ?>
    <?php echo $__env->yieldPushContent('scripts'); ?>
</body>
</html>
<?php /**PATH /home/armgroup/libs/resources/views/layouts/app.blade.php ENDPATH**/ ?>