@php /* $layout_page = shop_wishlist **Variables:** - $wishlist: no paginate */ @endphp @extends($GP247TemplatePath.'.layout') @section('block_main_content_center')
{{ $title }}
@if (count($wishlist) ==0) {{ gp247_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. {{ gp247_language_render('product.sku') }} {{ gp247_language_render('product.name') }} {{ gp247_language_render('product.price') }}
{{ $n }} {{ $product->sku }} {{ $product->name }} {{ $product->name }}
{{-- Process attributes --}} @if ($item->options) ( @foreach ($item->options as $keyAtt => $att) {{ $attributesGroup[$keyAtt] }}: {{ $att }} ; @endforeach )
@endif {{-- //end Process attributes --}}
{!! $product->showPrice() !!}
@endif
@endsection @push('styles') @php $view = gp247_shop_process_view($GP247TemplatePath, 'common.shop_css'); @endphp @include($view) @endpush @push('scripts') @endpush