@extends('layouts.app') @section('content')
| 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') }}
|
|