@foreach ($plans->where('project_type_id', 2) as $plan)
@php
$selectedPlan = false;
if ($loop->index === 0 && count($selected_plans) === 0) {
$selectedPlan = true;
} elseif (in_array($plan->id, $selected_plans)) {
$selectedPlan = true;
}
@endphp
@endforeach