@lang('behaviourRecords.behaviour_records_point')
@php
$totalBehaviourPoints = 0;
if (@$studentBehaviourRecords) {
foreach ($studentBehaviourRecords as $studentBehaviourRecord) {
$totalBehaviourPoints += $studentBehaviourRecord->point;
}
}
@endphp
{{ $totalBehaviourPoints }}