@extends('layouts.admin') @section('title', 'Fee Reminders') @section('page-title', 'Fee Reminders Setup') @section('content')
Broadcast Fee Alert

Select students from the table and enter the reminder message below. Reminders are dispatched directly to the mapped parents via simulated SMS.

@csrf
Student Records
@forelse($students as $std) @empty @endforelse
Student Class / Section Parent Details
{{ $std->name }} Roll: {{ $std->roll_number }} {{ $std->schoolClass->name }} - {{ $std->section->name }} @foreach($std->parents as $p) {{ $p->name }} Mob: {{ $p->mobile }} @endforeach
No students added to the system database.
@endsection @section('scripts') @endsection