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

{{ __('shop::app.customer.account.wishlist.share-wishlist') }}

@endif {!! view_render_event('bagisto.shop.customers.account.wishlist.list.after', ['wishlist' => $items]) !!}
@endsection @push('scripts') @if ($isSharingEnabled) @endif @endpush