@extends('layouts.home') @section('content') @if (session('wishlist'))

{{ session('lang') == 'en' ? 'Wishlist' : 'قائمة منتجات المفضلة' }}

{{-- Items Side Left --}}
{{-- items components --}} @foreach (session('wishlist') as $id => $details)
imac image

{{ session('lang') == 'en' ? '$' : '$' }} {{ $details['price'] }}

{{ $details['name'] }}
@csrf @method('DELETE')
@endforeach
@else

{{ session('lang') == 'en' ? 'Your wishlist is currently empty' : 'لا يوجد منتجات مفضلة !' }}

{{ session('lang') == 'en' ? 'Start exploring and add items you love to your wishlist!' : 'ابدا بالتسوق الان و اختر ما تحب' }}

{{ session('lang') == 'en' ? 'Continue Shopping ' : 'تسوق هنا' }}
@foreach ($productViews as $view)
@endforeach @endif @endsection