@extends('layouts.app') @section('title', 'Savings Scheme Details') @section('page-title', 'Savings Scheme Details') @section('content')
{{ $savingsScheme->name }}
Edit Back
Basic Information
Name: {{ $savingsScheme->name }}
Description: {{ $savingsScheme->description ?? 'N/A' }}
Status: {{ ucfirst($savingsScheme->status) }}
Interest Details
Interest Type: {{ ucfirst($savingsScheme->interest_type) }}
Interest Rate: {{ $savingsScheme->interest_rate }}%
Duration: {{ $savingsScheme->duration_value }} {{ ucfirst($savingsScheme->duration_type) }}
Amount Limits
Min Amount: ₹{{ number_format($savingsScheme->min_amount, 2) }}
Max Amount: ₹{{ number_format($savingsScheme->max_amount ?? 0, 2) }}
@endsection