@extends('web.themes.shella.layouts.app') @section('content')

{{ __('Wish list') }}

@if(! $products->isEmpty())
{{ __('Remove all') }}
@endif
@if($products->isEmpty())

{{ __('No products were added to the Wish List') }}

@endif @include('web.themes.shella.components.products.collection.grid-products', [ 'products' => $products ])
@stop