@extends('layouts.app') @section('title', 'Fine Management') @section('content')

Fine Management

@forelse($fines as $loan) @empty @endforelse
BookBorrowerFineStatusActions
{{ $loan->book->title }} {{ $loan->student->full_name ?? '—' }} ₦{{ number_format($loan->fine_amount, 2) }} {{ $loan->fine_paid ? 'Paid' : 'Outstanding' }} @if(!$loan->fine_paid)
@csrf
@endif
No fines on record.
@endsection