@extends('layouts.app') @section('title', 'Loan Schemes') @section('page-title', 'Loan Schemes') @section('content') @if(session('success')) @endif @if(session('error')) @endif
All Loan Schemes
New Loan Scheme
@forelse($schemes as $scheme) @empty @endforelse
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) }}
@csrf @method('DELETE')

No loan schemes found

Create First Loan Scheme
{{ $schemes->links() }}
@endsection