@foreach ($monthly_target_points_all_branches as $data)
{{-- @if($loop->first) --}}
@php
$branch = \App\Models\Branch::find($data->branch_id);
$all_points = $data->achived_open_points + $data->achived_order_points + $data->achived_follow_points ;
$planned_points = $data->planned_points;
$value = ( $planned_points <= 0 ) ? 100 : ($all_points / $planned_points)*100;
@endphp
{{-- @endif --}}
@endforeach