forecast.php 233 Bytes
<?php foreach($spots as $one_spot):?>
    <div>
        <div class="name"><?=$one_spot->name?></div>
        <?=$this->render('@app/views/spots/_forecast', [
            'model'=>$one_spot
        ]);?>
    </div>
<?php endforeach;?>