@extends('newBase') @section('title', __('Order Details')) @section('content')
{{ __('User Account History') }}
{{----}} {{----}}
@hasrole('super user')
{{----}} {{----}}
@endhasrole
@foreach($clientDetails as $key=>$row) @endforeach
{{ __('Currency') }} {{ __('Transaction-In') }} {{ __('Transaction-Out') }} {{ __('Total Balance') }}
{{$row->currency}} {{$row->transactionIn}} {{$row->transactionOut}} {{$row->totalBalance}}

@hasrole('super user')
{{----}} {{----}}
@endhasrole
@foreach($gbpTransactions as $key=>$row) @endforeach
Account Balance GBP: {{$walletGBPValue}}
{{ __('Date') }} {{ __('Description') }} {{ __('Transaction Amount') }} {{ __('Account Balance') }}
{{$row->date}} {{$row->header}}
@if(isset($row->description)) {!!$row->description!!} @else @endif
{{$row->value}} {{$row->balance}}

@hasrole('super user')
{{----}} {{----}}
@endhasrole
@foreach($rmbTransactions as $key=>$row) @if(isset($row->description)) @else @endif @endforeach
Account Balance CNY: {{$walletCNYValue}}
{{ __('Date') }} {{ __('Description') }} {{ __('Transaction Amount') }} {{ __('Account Balance') }}
{{$row->date}}{!!$row->description!!}{{$row->value}} {{$row->balance}}

@endsection