@extends('layouts.user') @section('title', 'My Favorite Packages') @section('content')
@include('user.sidebar')

❤️ My Favorite Packages

Packages you've saved for later

View Website
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @forelse ($favoritePackages as $package)
@if($package->main_image) {{ $package->title }} @else
📍 No Image
@endif
{{ $package->title }}

{{ $package->destination?->name ?? 'Multiple Destinations' }} • {{ $package->duration_days }} days

@if($package->has_discount)
{{ $package->formatted_price }}
{{ $package->formatted_discount_price }}
@else
{{ $package->formatted_price }}
@endif
👥 {{ $package->bookings_count }} bookings @if($package->difficulty_level) {{ ucfirst($package->difficulty_level) }} @endif
View Details & Book
@csrf
@empty
💔

No favorite packages yet

Browse our amazing tours and click the heart icon on any package to save it here for easy access later.

Browse All Packages →
@endforelse
@endsection