@extends('web.layouts.master') @section('content')

{{ __('My Wishlist') }}

@if ($products->count() > 0)
@foreach ($products as $product)
@endforeach
{{ $products->links() }}
@else
{{ __('Your wishlist is empty!') }}
{{ __('Continue Shopping') }}
@endif
@endsection