File: /home/armgroup/libs/storage/framework/views/8b556006cf0d2d5d3c17af955702d37bee21284d.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 C:\xampp\armshop\resources\views/livewire/frontend/search/single.blade.php ENDPATH**/ ?>