@extends('layouts.app') @section('title', 'Savings Schemes') @section('page-title', 'Savings Schemes') @section('content') @if(session('success')) @endif @if(session('error')) @endif
All Savings Schemes
New Savings Scheme
@forelse($schemes as $scheme) @empty @endforelse
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) }}
@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
@elseif($scheme->savings_type === 'FD')
Principal Range:
Min: ₹{{ number_format($scheme->min_amount ?? 0, 2) }} @if($scheme->max_amount)
Max: ₹{{ number_format($scheme->max_amount, 2) }} @else
No max limit @endif
@elseif($scheme->savings_type === 'MIS')
Principal Range:
Min: ₹{{ number_format($scheme->min_amount ?? 0, 2) }} @if($scheme->max_amount)
Max: ₹{{ number_format($scheme->max_amount, 2) }} @else
No max limit @endif
@else - @endif
{{ ucfirst($scheme->status) }}
@csrf @method('DELETE')

No savings schemes found

Create First Savings Scheme
{{ $schemes->links() }}
Scheme Types Summary
RD {{ $summary['rd_count'] }} Recurring Deposit{{ $summary['rd_count'] !== 1 ? 's' : '' }}
FD {{ $summary['fd_count'] }} Fixed Deposit{{ $summary['fd_count'] !== 1 ? 's' : '' }}
MIS {{ $summary['mis_count'] }} Monthly Income{{ $summary['mis_count'] !== 1 ? 's' : '' }}
Active {{ $summary['active_count'] }} Active
Inactive {{ $summary['inactive_count'] }} Inactive
@endsection