@extends('shop::layouts.master')
@section('page_title')
{{ __('shop::app.customer.account.wishlist.page-title') }}
@endsection
@section('content-wrapper')
@include('shop::customers.account.partials.sidemenu')
@inject ('reviewHelper', 'Webkul\Product\Helpers\Review')
{{ __('shop::app.customer.account.wishlist.title') }}
@if (count($items))
@endif
{!! view_render_event('bagisto.shop.customers.account.wishlist.list.before', ['wishlist' => $items]) !!}
@if ($items->count())
@foreach ($items as $item)
@endforeach
{{ $items->links() }}
@else
{{ __('customer::app.wishlist.empty') }}
@endif
{!! view_render_event('bagisto.shop.customers.account.wishlist.list.after', ['wishlist' => $items]) !!}
@endsection