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

Consultant Wise Report

{{-- ================= SUMMARY CARDS ================= --}}
{{-- COUNSELLORS --}}
Total Counsellors

{{ $totalConsultants ?? 0 }}

{{-- SESSIONS --}}
Total Sessions

{{ $totalSessions ?? 0 }}

{{-- EARNINGS --}}
Total Earnings

₹{{ number_format($totalEarning ?? 0, 2) }}

{{-- AVERAGE --}}
Average Per Consultant

₹{{ number_format($avg ?? 0, 2) }}

{{-- ================= MAIN TABLE ================= --}}
Counsellor Wise Session Report
@forelse($report as $row) @empty @endforelse
#ID Consultant Sessions Total Earnings Status
#{{ $loop->iteration }}
{{ strtoupper(substr($row['name'],0,1)) }}
{{ $row['name'] }}
{{-- Consultant Report --}}
{{ $row['sessions'] }} Sessions
{{ number_format($row['earning'], 2) }}
@if($row['status']) Active @else Inactive @endif
No Report Data Found

No consultant report records available.

{{-- ================= MODALS ================= --}} {{-- COUNSELLOR MODAL --}} {{-- SESSION MODAL --}} {{-- EARNING MODEL- --}} {{-- AVERAGE MODAL --}} {{-- ================= STYLE ================= --}} @endsection