@extends('layouts.app') @section('content')
{{ _lang('Fixed Deposits') }} {{ _lang('Apply New') }}
@foreach($fixedDeposits as $fixed_deposit) @endforeach
{{ _lang('Plan') }} {{ _lang('Currency') }} {{ _lang('Deposit Amount') }} {{ _lang('Return Amount') }} {{ _lang('Status') }} {{ _lang('Mature Date') }}
{{ $fixed_deposit->plan->name }} {{ $fixed_deposit->currency->name }} {{ decimalPlace($fixed_deposit->deposit_amount, currency($fixed_deposit->currency->name)) }} {{ decimalPlace($fixed_deposit->return_amount, currency($fixed_deposit->currency->name)) }} {!! xss_clean(fdr_status($fixed_deposit->status)) !!} {{ $fixed_deposit->mature_date }}
@endsection