{{ __('Manage Students') }}
{{ __('All Students') }} {{ __('View and manage student records, payments, and enrollment status.') }}
{{ __('Add New Student') }}
@forelse($students as $s) @empty @endforelse
{{ __('No.') }} {{ __('ID Number') }} {{ __('Name') }} {{ __('Class') }} {{ __('Destination') }} {{ __('Status') }} {{ __('Amount Paid') }} {{ __('Date') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ $s->regnum }} {{ $s->name }} {{ $s->class }} {{ $s->destination ?: '-' }} @if($s->status == 'Paid') {{ $s->status }} @elseif($s->status == 'Partially Paid') {{ $s->status }} @else {{ $s->status }} @endif {{ number_format($s->amount_paid) }} {{ $s->payment_date ? $s->payment_date->format('M d, Y') : '-' }} @if($s->status !== 'Paid') @endif
@csrf @method('DELETE')
{{ __('No students found.') }}
@push('scripts') @endpush