mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
564 B
PHTML
23 lines
564 B
PHTML
@if(count($products) == 0)
|
|
<li>
|
|
{{__("There is nothing to show!")}}
|
|
</li>
|
|
@else
|
|
@foreach($products as $product)
|
|
<li>
|
|
<a class="product-search-item" href="{{$product->webUrl()}}">
|
|
<img src="{{$product->imgUrl()}}" alt="{{$product->name}}">
|
|
<div class="product-search-content">
|
|
<h3>
|
|
{{$product->name}}
|
|
</h3>
|
|
<span>
|
|
{{$product->getPrice()}}
|
|
</span>
|
|
</div>
|
|
</a>
|
|
|
|
</li>
|
|
@endforeach
|
|
@endif
|