@extends('layout.main')
@section('content')
Penalties
@if (Auth::user()->can('loans-show'))
View Loan Details
@endif
Penalties List
Date |
Name |
Days In Arrears |
Amount Fined |
Status |
Action |
@foreach ($penalties as $penalty)
{{ $penalty->date }}
{{ $penalty->loanProductPenalty->name }}
{{ $penalty->loanProductPenalty->period }}
{{ number_format($penalty->amount) }}
{{ $penalty->status }}
@if ($penalty->status != 'paid')
@endif
@endforeach
@endsection