{{ __('Balance overview of your accounts') }}
| {{ __('Account Name') }} | {{ __('Start Balance') }} | {{ __('End Balance') }} | {{ __('Difference') }} |
|---|---|---|---|
|
{{ $account['name'] }}
|
{{ $account['start_balance_formatted'] }} | {{ $account['end_balance_formatted'] }} | {{ $account['difference_formatted'] }}@if($account['difference'] > 0) +@endif |
|
{{ __('TOTALS') }}
|
{{ $this->formatAmount($accountsData->sum('start_balance')) }} | {{ $this->formatAmount($accountsData->sum('end_balance')) }} | @php $totalDifference = $accountsData->sum('difference'); @endphp {{ $this->formatAmount($totalDifference) }}@if($totalDifference > 0) +@endif |
{{ __('Overview of the different transaction purposes') }}
| {{ __('Transaction Type') }} | {{ __('Credit') }} | {{ __('Debit') }} | {{ __('Total') }} |
|---|---|---|---|
|
{{ $transactionType['type_name'] }}
|
{{ $transactionType['incoming_formatted'] }} | {{ $transactionType['outgoing_formatted'] }} | {{ $transactionType['net_formatted'] }} |
{{ __('Track your account balance over time') }}
{{ __('Reciprocity rate: the share of your Hours that were also returned by the same people you helped during this period.') }}
{{ __('A high rate means you are part of a more closed exchange network with frequent returning exchange partners, while a low rate suggests you are part of a more open network with many different exchange partners.') }}
{{ __('Which types of profiles have you transacted with?') }}
| {{ __('Period Statistics') }} | {{ __('Value') }} |
|---|---|
|
{{ __('Number of Transactions') }}
|
{{ number_format($statisticsData['transaction_count']) }} |
|
{{ __('Unique ' . class_basename($modelType) . 's') }}
|
{{ number_format($count) }} |
|
{{ __('Total unique profiles') }}
|
{{ number_format($statisticsData['unique_profiles']) }} |
|
{{ __('Average reciprocity rate') }}
|
{{ number_format($statisticsData['average_return_ratio'], 1) }}% |