@extends('layouts.app') @section('title', 'Savings Products') @section('content')
| Name | Code | Type | Interest Rate | Min Balance | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $product->name }} | {{ $product->code }} | {{ ucfirst($product->type) }} | {{ $product->formatted_interest_rate }} | {{ number_format($product->minimum_balance, 2) }} | @if($product->is_active) Active @else Inactive @endif | |
| No savings products found. | ||||||