PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
themes
/
wowy
/
views
/
ecommerce
/
attributes
/
_layouts-filter
<div class="col-lg-3 col-md-4 mb-lg-0 mb-md-5 mb-sm-5 widget-filter-item" data-type="visual"> <h5 class="mb-20 widget__title" data-title="{{ $set->title }}">{{ __('By :name', ['name' => $set->title]) }}</h5> <ul class="list-filter"> @foreach($attributes->where('attribute_set_id', $set->id) as $attribute) <li data-slug="{{ $attribute->slug }}" data-toggle="tooltip" data-placement="top" title="{{ $attribute->title }}" class="mx-1"> <div class="custom-checkbox"> <label> <input class="form-control product-filter-item" type="checkbox" name="attributes[]" value="{{ $attribute->id }}" {{ in_array($attribute->id, $selected) ? 'checked' : '' }}> <span style="{{ $attribute->image ? 'background-image: url(' . RvMedia::getImageUrl($attribute->image) . ');' : 'background-color: ' . ($attribute->color ?: '#000') . ';' }}"></span> </label> </div> </li> @endforeach </ul> </div>
[+]
..
[-] visual.blade.php
[edit]
[-] dropdown.blade.php
[edit]
[-] text.blade.php
[edit]