Is it possible to calculate the average inside blade template? I'm using foreach loop to show the subject and grade of the student and on the average section how can I total average, what is the best approach on this matter calculate through blade or controller? aim is to generate total avarage.
here is the view code:
@foreach($scores as $score)
<td> {{$score->subject->subject_name}}</td>
<td> {{$score->result}}</td>
<td> {{$score->getGrade()}}</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> {{$score->final}}</td>
<td> {{$score->average()}}</td>
@endforeach