@extends('admin.layouts.app') @section('title', 'Chat Sessions') @section('content')

Chat Sessions

Monitor and view chat histories between users and astrologers.

@if(request()->anyFilled(['search', 'user_id', 'astrologer_id'])) Reset @endif
@forelse($sessions as $session) @empty @endforelse
Session ID User Astrologer Status Cost Actions
#{{ $session->id }}

{{ $session->user->name ?? 'Guest' }}

{{ $session->astrologer->name ?? 'N/A' }}

{{ ucfirst($session->status) }} ₹{{ number_format($session->total_cost, 2) }}
No chat sessions found.
{{ $sessions->links() }}
@endsection