@php /* $layout_page = shop_wishlist **Variables:** - $wishlist: no paginate */ @endphp @extends($sc_templatePath.'.layout') @section('block_main_content_center')
{{ $title }}
@if (count($wishlist) ==0) {{ sc_language_render('front.no_item') }} @else
@foreach($wishlist as $item) @php $n = (isset($n)?$n:0); $n++; $product = $modelProduct->start()->getDetail($item->id, null, $item->storeId); @endphp @endforeach
No. {{ sc_language_render('product.sku') }} {{ sc_language_render('product.name') }} {{ sc_language_render('product.price') }}
{{ $n }} {{ $product->sku }} {{ $product->name }} {{ $product->name }}
{{-- Process attributes --}} @if ($item->options->count()) ( @foreach ($item->options as $keyAtt => $att) {{ $attributesGroup[$keyAtt] }}: {{ $att }} ; @endforeach )
@endif {{-- //end Process attributes --}}
{!! $product->showPrice() !!}
@endif
@endsection @push('styles') {{-- Your css style --}} @endpush @push('scripts') {{-- //script here --}} @endpush