Jurisdiction: {{ $mapItem->title }}

Generated on: {{ date('d F Y') }}

{!! $disclaimer !!}

Country Information

@if($mapItem->aet_comment) @endif
Country {{ $mapItem->title }}
Year {{ $mapItem->year }}
Automatic Early Termination @switch($mapItem->aet) @case('shall_apply') shall apply @break @case('shall_not_apply') shall not apply @break @case('enforceable_but_not_required') enforceable but not required @break @default {{ $mapItem->aet }} @endswitch
AET Comment {!! $mapItem->aet_comment !!}

Netting Map Summary

@if(count($mapInformations) > 0) @php // Group by counterparty type and settlement type $groupedInformations = $mapInformations->groupBy('counterparty_type'); // Define the order of counterparty types $counterpartyOrder = ['corporate_corporate', 'bank_corporate', 'bank_bank']; $settlementOrder = ['physical', 'financial']; $isFirstItem = true; @endphp @foreach($counterpartyOrder as $counterpartyType) @if(isset($groupedInformations[$counterpartyType])) @php $counterpartyGroup = $groupedInformations[$counterpartyType]; $settlementGroups = $counterpartyGroup->groupBy('settlement_type'); @endphp

@switch($counterpartyType) @case('corporate_corporate') Counterparty Type: Corporate - Corporate @break @case('bank_corporate') Counterparty Type: Bank - Corporate @break @case('bank_bank') Counterparty Type: Bank - Bank @break @default Counterparty Type: {{ ucfirst(str_replace('_', ' ', $counterpartyType)) }} @endswitch

@foreach($settlementOrder as $settlementType) @if(isset($settlementGroups[$settlementType]))

@switch($settlementType) @case('physical') Settlement Type: Physical @break @case('financial') Settlement Type: Financial @break @default Settlement Type: {{ ucfirst($settlementType) }} @endswitch

@foreach($settlementGroups[$settlementType] as $mapInformation) @if(!$isFirstItem)
@endif
@if($mapInformation->counterparty_comment) @endif @if($mapInformation->comment) @endif
Relevant Commodity @switch($mapInformation->relevant_commodity) @case('power_gas') Power/Gas @break @case('co2_allowances') CO2 Allowances @break @case('green_certificates') Green Certificates @break @case('mixed_portfolio') Mixed Portfolio @break @default {{ $mapInformation->relevant_commodity }} @endswitch
Colour Coding @switch($mapInformation->color) @case('green') Green @break @case('yellow') Yellow @break @case('red') Red @break @default None @endswitch
Counterparty Comment {!! $mapInformation->counterparty_comment !!}
Comment {!! $mapInformation->comment !!}
@php $isFirstItem = false; @endphp @endforeach @endif @endforeach @endif @endforeach @else

No map information records available for this country.

@endif