{{-- Awards Summary --}}
{{__('Awards Summary')}}
{{ $summary['total'] }}
{{__('Total Awards')}}
{{ $summary['fully_paid'] }}
{{__('Paid Awards')}}
{{ $summary['partially_paid'] }}
{{__('Partially Paid Awards')}}
{{ $summary['unpaid'] }}
{{__('Unpaid Awards')}}
{{-- Payments summary --}}
{{__('Payments Summary')}}
{{-- total amount --}}
{{__('Total Amount')}}
@forelse ($payments_summary as $ps) {{ cMoney($ps['total_amount'] ?? 0, $ps['currency'], true) }}
@empty @endforelse
{{-- invoiced amount --}}
{{__('Invoiced Amount')}}
@forelse ($payments_summary as $ps) {{ cMoney($ps['invoiced_amount'] ?? 0, $ps['currency'], true) }}
@empty @endforelse
{{-- paid amount --}}
{{__('Paid Amount')}}
@forelse ($payments_summary as $ps) {{ cMoney($ps['total_paid_amount'] ?? 0, $ps['currency'], true) }}
@empty @endforelse
{{-- due amount --}}
{{__('Due Amount')}}
@forelse ($payments_summary as $ps) {{ cMoney($ps['invoiced_amount'] - $ps['total_paid_amount'], $ps['currency'], true) }}
@empty @endforelse