@extends('layouts.master') @section('title'){{translate('saving transaction')}} @endsection @section('content')
{{translate('saving transaction')}}
@if(!empty($savings_transaction->receipt)) @endif
{{translate('borrower')}} {{$savings_transaction->borrower->title}} {{$savings_transaction->borrower->first_name}} {{$savings_transaction->borrower->last_name}}
{{translate('id')}} {{$savings_transaction->id}}
{{translate('type')}} @if($savings_transaction->type=='deposit') {{translate('deposit')}} @endif @if($savings_transaction->type=='withdrawal') {{translate('withdrawal')}} @endif @if($savings_transaction->type=='bank_fees') {{translate('charge')}} @endif @if($savings_transaction->type=='interest') {{translate('interest')}} @endif @if($savings_transaction->type=='dividend') {{translate('dividend')}} @endif @if($savings_transaction->type=='transfer') {{translate('transfer')}} @endif @if($savings_transaction->type=='transfer_fund') {{translate('transfer')}} @endif @if($savings_transaction->type=='transfer_loan') {{translate('transfer')}} @endif @if($savings_transaction->type=='guarantee') {{translate('on hold')}} @endif @if($savings_transaction->reversed==1) @if($savings_transaction->reversal_type=="user") ({{translate('user reversed')}} ) @endif @if($savings_transaction->reversal_type=="system") ({{translate('system reversed')}} ) @endif @endif
{{translate('date')}} {{$savings_transaction->date}} {{$savings_transaction->time}}
{{translate('amount')}} @if($savings_transaction->credit>$savings_transaction->debit) {{currency_converter($savings_transaction->credit)}} @else {{currency_converter($savings_transaction->debit)}} @endif
{{translate('receipt')}} {{$savings_transaction->receipt}}
{{translate('note')}} {{$savings_transaction->notes}}
@endsection