@extends('layouts.master') @section('title') {{trans_choice('general.saving',2)}} {{trans_choice('general.transaction',2)}} @endsection @section('content')
{{trans_choice('general.name',1)}} | {{trans_choice('general.account',1)}} | {{trans_choice('general.date',1)}} | {{trans_choice('general.transaction',1)}} | {{trans_choice('general.debit',1)}} | {{trans_choice('general.credit',1)}} | {{ trans_choice('general.action',1) }} | ||
---|---|---|---|---|---|---|---|---|
@if(!empty($key->borrower)) {{ $key->borrower->title }} {{ $key->borrower->first_name }} {{ $key->borrower->last_name }} @endif | {{ $key->id }} | {{ $key->date }} {{ $key->time }} |
@if($key['type']=="deposit") {{trans_choice('general.deposit',1)}} @endif @if($key['type']=="withdrawal") {{trans_choice('general.withdrawal',1)}} @endif @if($key['type']=="bank_fees") {{trans_choice('general.bank_fee',1)}} @endif @if($key['type']=="dividend") {{trans_choice('general.dividend',1)}} @endif @if($key['type']=="interest") {{trans_choice('general.interest',1)}} @endif | @if($key['type']=="deposit" || $key['type']=="dividend" || $key['type']=="interest"){{number_format($key['amount'],2)}} | @else{{number_format($key['amount'],2)}} | @endif |
|