@extends('layouts.admin') @section('title','Reports & Analytics') @section('breadcrumb')
Comprehensive fee collection analytics
| # | Institute | Students | Total Fee | Collected | Due | Progress |
|---|---|---|---|---|---|---|
| {{ $idx+1 }} | {{ $row->name }} | {{ $row->students }} | ₹{{ number_format($row->total_fee, 0) }} | ₹{{ number_format($row->collected, 0) }} | ₹{{ number_format($row->due, 0) }} |
@php $pct = $row->total_fee > 0 ? round($row->collected/$row->total_fee*100,1) : 0; @endphp
{{ $pct }}%
|
| No data. | ||||||
| # | Session | Students | Payments | Total Fee | Collected | Due | Progress |
|---|---|---|---|---|---|---|---|
| {{ $idx+1 }} | {{ $row->name }} | {{ $row->students }} | {{ $row->payments }} | ₹{{ number_format($row->total_fee, 0) }} | ₹{{ number_format($row->collected, 0) }} | ₹{{ number_format($row->due, 0) }} |
@php $pct = $row->total_fee > 0 ? round($row->collected/$row->total_fee*100,1) : 0; @endphp
{{ $pct }}%
|
| No data. | |||||||
| # | Course | Students | Payments | Total Fee | Collected | Due | Progress |
|---|---|---|---|---|---|---|---|
| {{ $idx+1 }} | {{ $row->name }} {{ $row->code ?? '' }} | {{ $row->students }} | {{ $row->payments }} | ₹{{ number_format($row->total_fee, 0) }} | ₹{{ number_format($row->collected, 0) }} | ₹{{ number_format($row->due, 0) }} |
@php $pct = $row->total_fee > 0 ? round($row->collected/$row->total_fee*100,1) : 0; @endphp
{{ $pct }}%
|
| No data. | |||||||
| # | Advisor | Code | Students | Total Fee | Collected | Rate | Commission Earned |
|---|---|---|---|---|---|---|---|
| {{ $idx+1 }} | {{ $row->name }} | {{ $row->advisor_code }} | {{ $row->students }} | ₹{{ number_format($row->total_fee, 0) }} | ₹{{ number_format($row->collected, 0) }} | {{ $row->commission }}% | ₹{{ number_format($row->commission_amt, 0) }} |
| No data. | |||||||
| Total Commission: | ₹{{ number_format($advisorReport->sum('commission_amt'), 0) }} | ||||||
| # | Student | Course | Institute | Total Paid |
|---|---|---|---|---|
| {{ $idx+1 }} |
{{ $row->student_name }}
{{ $row->enrollment_no }}
|
{{ $row->course_name }} | {{ $row->institute_name }} | ₹{{ number_format($row->total_paid, 0) }} |
| No data. | ||||