@extends('account.base') @section('title', 'My Wallet') @section('account_content')

{{ __('My Wallet') }}

{{__('Account Balance')}}
{{__('CNY Account')}} {{$walletCNYValue}}
{{__('Recent history')}}
{{__('More')}}
{{__('Date')}}
{{__('Description')}}
{{__('Details')}}
@if(isset($rmbTransactions)) @foreach($rmbTransactions as $transaction)
{{TimestampConverter::getTimezoneTimestamp($transaction->date, 'd/m/Y H:i:s')}}
{{__("$transaction->header")}} @if(isset($transaction->description)) {!! $transaction->description !!} @endif
{{$transaction->value}}
@endforeach @else
{{__('No transactions to be displayed')}}
@endif
{{__('GBP Account')}} {{$walletGBPValue}}
{{__('Recent history')}}
{{__('More')}}
{{__('Date')}}
{{__('Description')}}
{{__('Details')}}
@if(isset($gbpTransactions)) @foreach($gbpTransactions as $transaction)
{{$transaction->date}}
{{__("$transaction->header")}} @if(isset($transaction->description)) {!! $transaction->description !!} @endif
{{$transaction->value}}
@endforeach @else
{{__('No transactions to be displayed')}}
@endif
@endsection