@extends('layouts.front') @section('content')

My Wishlist

@if(session('success')) @endif @if($wishlisted->isEmpty())

Your wishlist is empty

Start exploring destinations and add your favorites here!

Browse Destinations
@else
@foreach($wishlisted as $destination)

{{ $destination->title }}

@for($i = 1; $i <= 5; $i++) @endfor ({{ $destination->reviews_count ?? 0 }} Reviews)

${{ $destination->pricing }}

{{ Str::limit($destination->description, 100) }}

View Details
@csrf @method('DELETE')
@endforeach
{{ $wishlisted->links() }}
@endif
@endsection