| Name | Size | Mode | Actions |
|---|---|---|---|
| attributes/ | - | 0755 | rm |
| customers/ | - | 0755 | rm |
| includes/ | - | 0755 | rm |
| brand.blade.php | 1819 | 0644 | editdlrm |
| cart.blade.php | 13319 | 0644 | editdlrm |
| compare.blade.php | 14096 | 0644 | editdlrm |
| order-tracking.blade.php | 12296 | 0644 | editdlrm |
| product-category.blade.php | 1822 | 0644 | editdlrm |
| product-tag.blade.php | 1817 | 0644 | editdlrm |
| product.blade.php | 16033 | 0644 | editdlrm |
| products.blade.php | 1821 | 0644 | editdlrm |
| search.blade.php | 1876 | 0644 | editdlrm |
| wishlist.blade.php | 7385 | 0644 | editdlrm |
/home/techb158/immovalet.com/platform/themes/shopwise/views/ecommerce/compare.blade.php (14096B)
| Product Image | @foreach(Cart::instance('compare')->content() as $item) @php $product = $products->find($item->id); @endphp @if (!empty($product))
|
@endif
@endforeach
|||
| Product Name | @foreach(Cart::instance('compare')->content() as $item) @php $product = $products->find($item->id); @endphp @if (!empty($product))
{{ $product->name }} |
@endif
@endforeach
|||
| Price | @foreach(Cart::instance('compare')->content() as $item) @php $product = $products->find($item->id); @endphp @if (!empty($product))
{{ format_price($product->front_sale_price_with_taxes) }} @if ($product->front_sale_price !== $product->price) |
@endif
@endforeach
|||
| {{ __('Rating') }} | @foreach(Cart::instance('compare')->content() as $item) @php $product = $products->find($item->id); @endphp @if (!empty($product))@endif @endforeach | |||
| {{ __('Description') }} | @foreach(Cart::instance('compare')->content() as $item) @php $product = $products->find($item->id); @endphp @if (!empty($product))
{!! clean($product->description) !!} |
@endif
@endforeach
|||
| {{ $attributeSet->title }} | @foreach(Cart::instance('compare')->content() as $item) @php $product = $products->find($item->id); @endphp @if (!empty($product)) @php $attributes = app(\Botble\Ecommerce\Repositories\Interfaces\ProductInterface::class)->getRelatedProductAttributes($product)->where('attribute_set_id', $attributeSet->id)->sortBy('order'); @endphp @if ($attributes->count()) @if ($attributeSet->display_layout == 'dropdown')@foreach($attributes as $attribute) {{ $attribute->title }}@if (!$loop->last), @endif @endforeach | @elseif ($attributeSet->display_layout == 'text')
|
@else
|
@endif
@else
— | @endif @endif @endforeach
| {{ __('Buy now') }} | @foreach(Cart::instance('compare')->content() as $item){{ __('Add To Cart') }} | @endforeach|||
| @foreach(Cart::instance('compare')->content() as $item) | {{ __('Remove') }} | @endforeach
{{ __('No products in compare list!') }}
@endif