PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
resources
/
views
/
products
/
partials
<div class="list-selected-products @if (!$products->count()) hidden @endif"> <div class="mt20"><label class="text-title-field">{{ trans('plugins/ecommerce::products.selected_products') }}:</label></div> <div class="table-wrapper p-none mt10 mb20 ps-relative"> <table class="table-normal"> <tbody> @foreach($products as $relatedProduct) <tr> <td class="width-60-px min-width-60-px"> <div class="wrap-img vertical-align-m-i"> <img class="thumb-image" src="{{ RvMedia::getImageUrl($relatedProduct->image, 'thumb', false, RvMedia::getDefaultImage()) }}" alt="{{ $relatedProduct->name }}"></div> </td> <td class="pl5 p-r5 min-width-200-px"> <a class="hover-underline pre-line" href="{{ route('products.edit', $relatedProduct->id) }}">{{ $relatedProduct->name }}</a> @if ($includeVariation) <p class="type-subdued"> @if ($relatedProduct->variationInfo->id) @foreach($relatedProduct->variationInfo->variationItems as $variationItem) {{ $variationItem->attribute->title }} @if (!$loop->last) / @endif @endforeach @endif </p> @endif </td> <td class="pl5 p-r5 text-right width-20-px min-width-20-px"> <a href="#" class="btn-trigger-remove-selected-product" title="{{ trans('plugins/ecommerce::products.delete') }}" data-id="{{ $relatedProduct->id }}"> <i class="fa fa-times"></i> </a> </td> </tr> @endforeach </tbody> </table> </div> </div>
[-] product-variation-form.blade.php
[edit]
[-] selected-products-list.blade.php
[edit]
[-] panel-search-data.blade.php
[edit]
[+]
..
[-] attribute-sets.blade.php
[edit]
[-] add-product-attributes.blade.php
[edit]
[-] extras.blade.php
[edit]
[-] sort-order.blade.php
[edit]
[-] general.blade.php
[edit]
[-] configurable.blade.php
[edit]