@extends('adminlte::page') @section('title', 'Student Bills') @section('content_header')

Student Bills

Assign Bill
@stop @section('content') @include('partials.alerts')
@foreach($studentBills as $sb) @endforeach
# Student Bill Amount Status Paid On Actions
{{ $loop->iteration }} {{ $sb->student->full_name ?? '-' }} {{ $sb->bill->name ?? '-' }} {{ number_format($sb->amount, 2) }} {{ $sb->is_paid ? 'Paid' : 'Pending' }} {{ $sb->paid_at ? $sb->paid_at->format('d M, Y') : '-' }}
@csrf @method('DELETE')
@push('js') @endpush @stop