@extends('layouts.app') @section('title', 'Penalty Details') @section('page-title', 'Penalty Details') @section('content')
Penalty Information
@csrf @method('PUT')
Back

Penalty Number: {{ $penalty->penalty_number }}

Loan Number: {{ $penalty->loan->loan_number }}

Customer: {{ $penalty->customer->name }}

Amount: ₹{{ number_format($penalty->amount, 2) }}

Type: {{ ucfirst(str_replace('_', ' ', $penalty->type)) }}

Days Overdue: {{ $penalty->days_overdue }}

Due Date: {{ $penalty->due_date->format('d M Y') }}

Penalty Date: {{ $penalty->penalty_date->format('d M Y') }}

Status: {{ ucfirst($penalty->status) }}

@if($penalty->description)

Description: {{ $penalty->description }}

@endif
@endsection