@extends('layouts.app') @section('title', 'Savings Schemes') @section('page-title', 'Savings Schemes') @section('content') @if(session('success'))
| Type | Name | Interest Rate | Duration | Details | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $scheme->savings_type ?? 'RD' }} |
{{ $scheme->name }}
@if($scheme->description)
{{ \Illuminate\Support\Str::limit($scheme->description, 50) }} @endif |
{{ $scheme->interest_rate }}%
{{ ucfirst($scheme->interest_type ?? 'compound') }} @if(($scheme->interest_type ?? 'compound') === 'compound' && $scheme->savings_type !== 'MIS' && $scheme->compounding_frequency) | {{ ucfirst($scheme->compounding_frequency) }} Compounding @endif |
@if($scheme->savings_type === 'RD')
{{ $scheme->duration_value }}
{{ ucfirst($scheme->duration_type ?? 'monthly') }}
@if($scheme->duration_type === 'daily')
({{ $scheme->duration_value }} days) @elseif($scheme->duration_type === 'weekly') ({{ $scheme->duration_value }} weeks) @endif @else {{ $scheme->duration_value }} months @endif |
@if($scheme->savings_type === 'RD')
Installment: ₹{{ number_format($scheme->installment_amount ?? 0, 2) }}
@elseif($scheme->savings_type === 'FD')
@if($scheme->min_amount || $scheme->max_amount) Range: @if($scheme->min_amount) ₹{{ number_format($scheme->min_amount, 2) }} @endif @if($scheme->min_amount && $scheme->max_amount) - @endif @if($scheme->max_amount) ₹{{ number_format($scheme->max_amount, 2) }} @endif @else No limits @endif
Principal Range:
@elseif($scheme->savings_type === 'MIS')
Min: ₹{{ number_format($scheme->min_amount ?? 0, 2) }} @if($scheme->max_amount) Max: ₹{{ number_format($scheme->max_amount, 2) }} @else No max limit @endif
Principal Range:
@else
-
@endif
Min: ₹{{ number_format($scheme->min_amount ?? 0, 2) }} @if($scheme->max_amount) Max: ₹{{ number_format($scheme->max_amount, 2) }} @else No max limit @endif |
{{ ucfirst($scheme->status) }} | |
|
No savings schemes found Create First Savings Scheme |
||||||