@if($type == 'GBP')
{{__('GBP Account')}}
{{isset($walletValue)?$walletValue:'£ 0.00'}}
@else
{{__('CNY Account')}}
{{isset($walletValue)?$walletValue:'¥ 0.00'}}
@endif
@if(isset($transactions))
@foreach($transactions as $transaction)
{{TimestampConverter::getTimezoneTimestamp($transaction->date, 'd/m/Y H:i:s')}}
{{__("$transaction->header")}}
@if($transaction->description)
{!! $transaction->description !!}
@endif
{{$transaction->value}}
@endforeach
@else
{{__('No transactions to be displayed')}}
@endif
@if(isset($listPage))
@include('pagination', ['includeScript'=>true])
@endif