PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
resources
/
views
/
themes
<section class="content-page"> <div class="container"> <div class="row"> <div class="list-page-title"> <h2 class="">{{ $tag->name }} <small> {{ $tag->products->count() }} {{ __('products') }} </small></h2> </div> <div class="row product-list-item"> @if ($tag->products->count() > 0) @foreach ($tag->products as $product) <li> <div class="product-item product-loop"> <img src="{{ RvMedia::getImageUrl($product->image, 'thumb', false, RvMedia::getDefaultImage()) }}" alt="{{ $product->name }}" class="product-item-thumb"> <h3>{{ $product->name }}</h3> <span class="price"> {!! the_product_price($product) !!} </span> <div class="product-action"> <a data-quantity='1' data-product='{{ $product->id }}' href="javascript: void(0);" class="btn btn-info">{{ __('Add to cart') }}</a> </div> </div> </li> @endforeach @endif </div> </div> </div> </section>
[+]
attributes
[+]
includes
[-] product-tag.blade.php
[edit]
[-] wishlist.blade.php
[edit]
[-] cart.blade.php
[edit]
[+]
..
[-] brand.blade.php
[edit]
[+]
customers
[+]
discounts
[-] products.blade.php
[edit]
[-] search.blade.php
[edit]
[-] product-category.blade.php
[edit]
[-] order-tracking.blade.php
[edit]
[-] compare.blade.php
[edit]
[-] product.blade.php
[edit]