@foreach ($plans as $key => $plan)
{{--
--}}
@foreach ($plan->points as $plan_point)
{{ $plan_point }}
@endforeach
@if ($current_plan->plan->priority < $plan->priority)
@php
if (isset($current_plan->plan->upgrade_amount[$plan->priority - $current_plan->plan->priority - 1])){
$amount = $current_plan->plan->upgrade_amount[$plan->priority - $current_plan->plan->priority - 1];
}else{
$amount = 0;
}
@endphp
₹ {{ $amount }}
@endif
@if ($current_plan->plan->priority >= $plan->priority)
Active Plan
@else
Upgrade
@endif
@endforeach