@extends('layouts.app') @section('title', 'Loan Schemes') @section('page-title', 'Loan Schemes') @section('content') @if(session('success'))
| Name | Interest Rate | Duration | Min Amount | Max Amount | Processing Fee | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $scheme->name }}
@if($scheme->description)
{{ \Illuminate\Support\Str::limit($scheme->description, 50) }} @endif |
{{ $scheme->interest_rate }}% ({{ ucfirst($scheme->interest_type) }}) | {{ $scheme->duration_value }} {{ ucfirst($scheme->duration_type) }} | ₹{{ number_format($scheme->min_amount, 2) }} | ₹{{ number_format($scheme->max_amount ?? 0, 2) }} | ₹{{ number_format($scheme->processing_fee, 2) }} | {{ ucfirst($scheme->status) }} | |
|
No loan schemes found Create First Loan Scheme |
|||||||