@extends('layouts.admin') @section('title','Advisor Details') @section('breadcrumb')
{{ $advisor->advisor_code }}
{{ $advisor->is_active ? 'Active' : 'Inactive' }}{{ $advisor->email ?? '-' }}
{{ $advisor->phone ?? '-' }}
Students
Collected
Advisor Fee Earned
| Enrollment | Name | Course | Total Fee | Paid | Due |
|---|---|---|---|---|---|
| {{ $s->enrollment_no }} | {{ $s->name }} | {{ optional($s->course)->name }} | ₹{{ number_format(optional($s->feeStructure)->total_course_fee, 0) }} | ₹{{ number_format($s->feePayments->sum('amount_paid'), 0) }} | ₹{{ number_format(max(0, optional($s->feeStructure)->total_course_fee - $s->feePayments->sum('amount_paid')), 0) }} |
| No students assigned yet. | |||||