@include('invoices.conflicts.header', ['invoice' => $invoice])
@foreach ($conflicts as $type => $conflict)
@if ($conflict->isEmpty())
@continue
@endif
@include('invoices.conflicts.table', [
'conflicts' => $conflict,
'invoice' => $invoice,
'type' => $type,
])
@if ($conflict->hasPages())
@endif
@endforeach
@if ($allowedToResolve)
@endif