@extends('frontend.layouts.app') @section('title-suffix') {{ __('wishlist.shared-title') }} @endsection @push('styles') @endpush @section('main-content')
@if (!$products)

{{ __('wishlist.shared-empty-1') }}
{{ __('wishlist.shared-empty-2') }}

{{ __('wishlist.shared-discover-btn') }}
@else
@if ($products) @foreach ($products as $key => $product) @endforeach @endif
{{ __('wishlist.thead-product') }} {{ __('wishlist.thead-price') }}
{{ $product['price'] }} FCFA @if ($product['discount'])-{{ $product['discount'] }} %@endif
{{ __('wishlist.shared-display-btn') }}
@endif
@endsection