@extends('user.layouts.app') @section('title', 'My Favourite Astrologers') @section('content')

My Favourites

Quickly connect with your preferred astrologers.

@if($favourites->count() > 0)
@foreach($favourites as $astrologer)
{{ $astrologer->name }}
@if($astrologer->isOnline())
@endif

{{ $astrologer->name }}

{{ number_format($astrologer->average_rating, 1) }} ({{ $astrologer->total_reviews }})
{{ $astrologer->skills->pluck('name')->take(2)->implode(', ') }}
{{ $astrologer->languages->pluck('name')->take(2)->implode(', ') }}

Price

₹{{ $astrologer->astrologerDetail->price_chat ?? 0 }}/min

View Profile
@endforeach
{{ $favourites->links() }}
@else

No Favourites Yet

Mark astrologers as favourites to quickly find them here later.

Browse Astrologers
@endif

Success

Operation successful

@endsection @push('scripts') @endpush