@php // Les données sont calculées par MonLogementALaLoupeCalculator $plansLot = $plansLot ?? []; $currentPageNumber = $pageNumber ?? 1; @endphp @if(!empty($plansLot)) @foreach($plansLot as $index => $pathPlanLot) @php $orientation = $pathPlanLot['orientation'] ?? 'portrait'; $chemin = $pathPlanLot['chemin'] ?? ''; // Pour chaque plan, on crée une nouvelle page avec son propre numéro // Le premier plan a le numéro $currentPageNumber + 1, le deuxième $currentPageNumber + 2, etc. $planPageNumber = $currentPageNumber + $index + 1; @endphp
@include('simulator.templates.shared._titre_page', ['titreContent' => 'Mon logement à la loupe'])
@include('simulator.templates.shared._pictoLosanges', ['width' => 200])
@endforeach @else
@include('simulator.templates.shared._titre_page', ['titreContent' => 'Mon logement à la loupe'])
@include('simulator.templates.shared._pictoLosanges', ['width' => 200])

Aucun plan disponible pour ce logement.

@endif