@extends('layouts.app') @section('content')

Fee Challans Management

Total: {{ $challans->count() }} Challans
@if(session('success'))
{{ session('success') }}
@endif
@forelse($challans as $challan) @empty @endforelse
ID Student Info Fee Type Amount CNIC Mobile Expiry Created Actions
#{{ $challan->id }} {{ $challan->student_info }} {{ $challan->feeType->name }} Rs. {{ number_format($challan->amount) }} {{ $challan->cnic }} {{ $challan->mobile_no }}
@if($challan->expiry_date < now()) Expired @elseif($challan->expiry_date < now()->addDays(7)) Soon @else Active @endif {{ $challan->expiry_date->format('d M Y') }}
{{ $challan->created_at->format('d M Y') }} {{ $challan->created_at->format('H:i A') }}
No Challans Found

Start by creating your first fee challan.

Create New Challan
@section('scripts') @endsection @endsection