@if($accountsData && $accountsData->count() > 0)
{{ __('Show in decimals') }}
@endif
@if($this->fromDate && $this->toDate && $accountsData && $accountsData->count() > 0) {{ __('PDF') }} {{ __('Loading...') }} @else {{ __('PDF') }} @endif
@if($accountsData && $accountsData->count() > 0)

{{ __('Account Balance') }}

{{ __('Balance overview of your accounts') }}

@foreach($accountsData as $account) @endforeach
{{ __('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
@if($transactionTypesData && $transactionTypesData->count() > 0)

{{ __('Transacion types') }}

{{ __('Overview of the different transaction purposes') }}

@foreach($transactionTypesData as $transactionType) @endforeach
{{ __('Transaction Type') }} {{ __('Credit') }} {{ __('Debit') }} {{ __('Total') }}
{{ $transactionType['type_name'] }}
{{ $transactionType['incoming_formatted'] }} {{ $transactionType['outgoing_formatted'] }} {{ $transactionType['net_formatted'] }}
@endif @if($accountBalancesTimelineData && count($accountBalancesTimelineData) > 4)

{{ __('Account Balance Over Time') }}

{{ __('Track your account balance over time') }}

@endif @if($isOrganization && $returnRatioTimelineData && count($returnRatioTimelineData) > 4)
{{ __('Loading chart...') }}

{{ __('Reciprocity Rate Timeline') }}

{{ __('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.') }}

@endif

{{ __('Transaction Relation Statistics') }}

{{ __('Which types of profiles have you transacted with?') }}

@if($statisticsData['profiles_by_type'] && $statisticsData['profiles_by_type']->count() > 0) @foreach($statisticsData['profiles_by_type'] as $modelType => $count) @endforeach @endif @if($isOrganization) @endif
{{ __('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) }}%
@else
{{ __('Please select a period to generate the account balance report') }}
@endif