@extends('templates.'.sc_store('template').'.shop_layout') @section('center')

{{ $title }}

@if (count($wishlist) ==0)
Not found products!
@else
@foreach($wishlist as $item) @php $n = (isset($n)?$n:0); $n++; $product = App\Models\ShopProduct::find($item->id); @endphp @endforeach
No. SKU Name Price Remove
{{ $n }} {{ $product->sku }} {{ $product->name }}
{!! $product->showPrice() !!}
@endif
@endsection @section('breadcrumb') @endsection @push('scripts') @endpush