<?php $array = array_fill(0, 14, ['amount_paid' => 2050.00]); var_export( array_map( fn($set) => array_sum(array_column($set, 'amount_paid')), array_chunk($array, 10) ) );
You have javascript disabled. You will not be able to edit any code.