@extends('layout.main') @section('content')

Loan Product Penalties: {{ $loanproduct->product_name }}

@can('loans-products-penalty-create') Add New @endcan @can ('loans-products-list') View Loan Product @endcan

List

Name Type Days In Arrears Value Description Date Action @foreach ($loanproduct->penalties as $penalty) {{ $penalty->name }} {{ \App\Constants\LoanTypePenaltyContants::getTypeName($penalty->type) }} {{ $penalty->period }} {{ number_format($penalty->amount) }} {{ $penalty->description }} {{ $penalty->created_at->format('d m Y') }}
@can('loans-products-penalty-edit') @endcan
@endforeach
@endsection