@extends('layouts.app') @section('title', 'Fine Management') @section('content')
| Book | Borrower | Fine | Status | Actions |
|---|---|---|---|---|
| {{ $loan->book->title }} | {{ $loan->student->full_name ?? '—' }} | ₦{{ number_format($loan->fine_amount, 2) }} | {{ $loan->fine_paid ? 'Paid' : 'Outstanding' }} | @if(!$loan->fine_paid) @endif |
| No fines on record. | ||||