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