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/6788bf7c5dfee5f714cf44354ee3ef9e89175b83.php
<div class="col-6 col-lg-3 pe-2 ps-2 mb-3">
    <div class="item item-pro position-relative">
        <div class="quick-btn">
            <ul class="list-menu ps-0">
                <?php
if (! isset($_instance)) {
    $html = \Livewire\Livewire::mount('frontend.search.add-to-favorite', ['product' => $product])->html();
} elseif ($_instance->childHasBeenRendered('f-'.e($product->id).'')) {
    $componentId = $_instance->getRenderedChildComponentId('f-'.e($product->id).'');
    $componentTag = $_instance->getRenderedChildComponentTagName('f-'.e($product->id).'');
    $html = \Livewire\Livewire::dummyMount($componentId, $componentTag);
    $_instance->preserveRenderedChild('f-'.e($product->id).'');
} else {
    $response = \Livewire\Livewire::mount('frontend.search.add-to-favorite', ['product' => $product]);
    $html = $response->html();
    $_instance->logRenderedChild('f-'.e($product->id).'', $response->id(), \Livewire\Livewire::getRootElementTagName($html));
}
echo $html;
?>
            </ul>
        </div>
        <div class="item-img">
            <div class="row">
                <div class="col-12 mt-3">
                    <div class="img-pro position-relative">
                        <a href="<?php echo e(route('products.show', $product->slug)); ?>" target="_blank">
                            <img src="<?php echo e(asset($product->image)); ?>" class="img-fluid" alt="<?php echo e($product->name); ?>" />
                        </a>
                    </div>
                </div>
            </div>
        </div>
        <div class="row name-col">
            <div class="col-12 pro-name-special position-relative">
                <a class="d-block pro-name" href="<?php echo e(route('products.show', $product->slug)); ?>">
                    <h3><?php echo e($product->name); ?></h3>
                </a>
            </div>
        </div>
        <?php if($product->stock && $product->price): ?>
            <div class="row cost-col">
                <div class="col-12 text-center mb-2 mt-2">
                    <?php if($product->special_mask): ?>
                        <span class="old-cost"><?php echo e(number_format($product->price)); ?></span>
                    <?php endif; ?>
                    <span class="cost-total"><?php echo e(number_format($product->special_mask ?: $product->price)); ?></span>
                    <span class="unit">تومان</span>
                </div>
            </div>
            <?php
if (! isset($_instance)) {
    $html = \Livewire\Livewire::mount('frontend.search.add-to-cart', ['product' => $product])->html();
} elseif ($_instance->childHasBeenRendered('c-'.e($product->id).'')) {
    $componentId = $_instance->getRenderedChildComponentId('c-'.e($product->id).'');
    $componentTag = $_instance->getRenderedChildComponentTagName('c-'.e($product->id).'');
    $html = \Livewire\Livewire::dummyMount($componentId, $componentTag);
    $_instance->preserveRenderedChild('c-'.e($product->id).'');
} else {
    $response = \Livewire\Livewire::mount('frontend.search.add-to-cart', ['product' => $product]);
    $html = $response->html();
    $_instance->logRenderedChild('c-'.e($product->id).'', $response->id(), \Livewire\Livewire::getRootElementTagName($html));
}
echo $html;
?>
        <?php else: ?>
            <div class="row cost-col">
                <div class="col-12 text-center mb-2 mt-2">
                    <span class="unit">ناموجود</span>
                </div>
            </div>
        <?php endif; ?>
    </div>
</div>
<?php /**PATH /home/technova/technovar/resources/views/livewire/frontend/search/single.blade.php ENDPATH**/ ?>