Fournisseur: {{ $contract->provider }}
Référence: {{ $contract->reference ?? 'N/A' }}
Commune:
@if($contract->municipality)
{{ $contract->municipality->name }} ({{ $contract->municipality->zip_code }})
@else
Global / Agglomération
@endif
Type: {{ $contract->type }}
Status: {{ $contract->status }}
Date Début: {{ $contract->start_date->format('d/m/Y') }}
Date Fin: {{ $contract->end_date ? $contract->end_date->format('d/m/Y') : 'Indéfinie' }}
Montant: {{ number_format($contract->amount, 2) }} {{ $contract->currency }}
@if($contract->notes)
Notes:
{{ $contract->notes }}
@endif