@extends('adminlte::page') @section('title', 'Guardian Dashboard') @section('content_header')

Dashboard

@stop @section('content') {{-- Stats Cards --}}
My Children {{ $totalStudents }}
Total Results {{ $totalResults }}
Pending Fees ${{ number_format($pendingFees, 2) }}
{{-- Guardian Profile & Children --}}

{{ $guardian->first_name }} {{ $guardian->last_name }}

{{ ucfirst($guardian->gender) }} | {{ $guardian->relation_to_student }}


{{ $guardian->phone }}

{{ $guardian->email ?? '-' }}

{{ $guardian->address ?? '-' }}

{{ $guardian->occupation ?? '-' }}

{{ $guardian->national_id ?? '-' }}

My Children

@forelse($students as $student) @empty @endforelse
Admission No Name Class Dormitory Session Actions
{{ $student->admission_no }} {{ $student->full_name }} {{ $student->class?->name ?? '-' }} {{ $student->dormitory?->name ?? '-' }} {{ $student->academicSession?->name ?? '-' }} Results Fees
No children assigned.
@stop