|
{{ __('Date') }}
|
{{ __('From') }}
|
{{ __('To') }}
|
{{ __('Amount') }}
|
|---|---|---|---|
|
{{ ucfirst($transaction['datetime']->locale(app()->getLocale())->translatedFormat('l d-m-Y')) }}
{{ str_replace('@TIME@', $transaction['datetime']->locale(app()->getLocale())->translatedFormat('H:i:s'), __('on @TIME@')) }}
|
@if ($transaction['from_profile_full_name'] == $transaction['from_profile_name'])
{{ $transaction['from_profile_name'] }}
{{ $transaction['from_profile_location'] }}
@else
{{ $transaction['from_profile_name'] }}
{{ Illuminate\Support\Str::limit($transaction['from_profile_name'] . ', ' . $transaction['from_profile_location'], 35) }}
@endif
{{ __(ucfirst(strtolower($transaction['from_account']))) }} {{ __('bank account') }}
|
@if ($transaction['to_profile_full_name'] == $transaction['to_profile_name'])
{{ $transaction['to_profile_name'] }}
{{ $transaction['to_profile_location'] }}
@else
{{ $transaction['to_profile_name'] }}
{{ Illuminate\Support\Str::limit($transaction['to_profile_full_name'] . ', ' . $transaction['to_profile_location'], 35) }}
@endif
{{ __(ucfirst(strtolower($transaction['to_account']))) }} {{ __('bank account') }}
|
{{ tbFormat($transaction['amount']) }}
|