@extends('layouts.master') @section('title', 'Pending Fees') @section('content')
@forelse($students as $key => $student) @empty @endforelse
# Student Name Registration ID Status
{{ $key + 1 }} {{ $student->name }} {{ $student->reg_id }} @if($student->payments->count() == 0) No Payment @else Due Pending @endif
No Pending Fees Found
@endsection