Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dclarke-modus/4521946ecb4f535b4f3d6a1a1d114b6f to your computer and use it in GitHub Desktop.
Save dclarke-modus/4521946ecb4f535b4f3d6a1a1d114b6f to your computer and use it in GitHub Desktop.
@php
$columnCount = 0;
$counter = 0;
$scenarios = array_chunk($valuationScenarios, 3);
$indicators = array_chunk($valuationScenarioData, 3);
@endphp
@if (count($scenarios) > 0)
@foreach ($scenarios as $scenario)
<div class="page">
@include('partials.report-scenarios-item', array('headings' => $scenario))
@if (array_key_exists($counter, $indicators))
@include('partials.report-indicator-item', array('indicators' => $indicators[$counter], 'fields' => $indicatorFields, "counter" => $counter))
@endif
</div>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment