@extends('layouts.app') @section('title', 'Savings Products') @section('content')

Savings Products

@forelse($savingsProducts as $product) @empty @endforelse
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
@csrf @method('POST')
@if($product->savingsAccounts->count() == 0)
@csrf @method('DELETE')
@endif
No savings products found.
@if($savingsProducts->hasPages()) @endif
@endsection