Created
May 5, 2017 16:11
-
-
Save dclarke-modus/4521946ecb4f535b4f3d6a1a1d114b6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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