@extends('layouts.app') @section('css') {{-- select2 css --}} @endsection @section('content')
{{ __('Transfer Date') }} : {{ formatDate($fetchData->transaction_date) }}
{{ __('Transferred Amount') }} ({{ $fetchData->fromBank->currency->name }})
{{ formatCurrencyAmount($fetchData->amount, $fetchData->fromBank->currency->symbol) }}
{{ __('Bank Charge') }} ({{ $fetchData->fromBank->currency->name }})
{{ formatCurrencyAmount($fetchData->fee, $fetchData->fromBank->currency->symbol) }}
{{ __('Incoming Amount') }} ({{$fetchData->toBank->currency->name }})
{{ formatCurrencyAmount($fetchData->incoming_amount, $fetchData->toBank->currency->symbol) }}
@if (!empty($fetchData->memo))
{{ __('Description') }} : {{ $fetchData->memo }}
@endif
@endsection @section('js') @endsection