@extends('client.layout') @section('title') {{translate('saving detail')}} @endsection @section('content')
{{translate('account')}}# {{$saving->id}}
{{translate('product')}} @if(!empty($saving->savings_product)) {{ $saving->savings_product->name }} @endif
{{translate('minimum balance')}} @if(!empty($saving->savings_product)) {{$saving->savings_product->minimum_balance}} @endif
{{translate('interest_rate_per_annum')}} @if(!empty($saving->savings_product)) {{$saving->savings_product->interest_rate}} @endif
{{translate('interest_posting_frequency')}} @if(!empty($saving->savings_product)) @if($saving->savings_product->interest_posting==1) {{translate('every_1_month')}} @endif @if($saving->savings_product->interest_posting==2) {{translate('every_2_month')}} @endif @if($saving->savings_product->interest_posting==3) {{translate('every_3_month')}} @endif @if($saving->savings_product->interest_posting==4) {{translate('every_4_month')}} @endif @if($saving->savings_product->interest_posting==5) {{translate('every_6_month')}} @endif @if($saving->savings_product->interest_posting==6) {{translate('every_12_month')}} @endif @endif
{{translate('allow_overdraft')}} @if($saving->savings_product->allow_overdraw==0) {{translate('no')}} @endif @if($saving->savings_product->allow_overdraw==1) {{translate('yes')}} @endif