@section('reportTitle') Customer credit notes @stop @section('subtitle') (Period {{ $dateStart }} - {{ $dateEnd}}) @stop @section('table') Customer:
{{ $extraData['customer']->getFullAddress() }}

Total summary

Subtotal €{{ CommonFunctions::formatNumber($extraData['total_subtotal']) }}
IVA €{{ CommonFunctions::formatNumber($extraData['total_vat']) }}
Total €{{ CommonFunctions::formatNumber($extraData['total_subtotal'] + $extraData['total_vat']) }}
Extra costs €{{ CommonFunctions::formatNumber($extraData['total_supcosts']) }}







Credit notes issued @foreach($entries['creditnotes'] as $creditnote) @endforeach
Total: €{{ CommonFunctions::formatNumber($extraData['total_subtotal']) }} €{{ CommonFunctions::formatNumber($extraData['total_vat']) }} €{{ CommonFunctions::formatNumber($extraData['total_subtotal'] + $extraData['total_vat']) }} €{{ CommonFunctions::formatNumber($extraData['total_supcosts']) }}
ID Date Description Subtotal IVA Total Extra costs
{{ $creditnote->id }} {{ CommonFunctions::formatDate($creditnote->createdOn) }} {{ $creditnote->jobTitle }} €{{ CommonFunctions::formatNumber($creditnote->getSubtotal()) }} €{{ CommonFunctions::formatNumber($creditnote->getVat()) }} €{{ CommonFunctions::formatNumber($creditnote->getTotalExcludingSupCosts()) }} €{{ CommonFunctions::formatNumber($creditnote->getSupCosts()) }}
@stop