@php $criteriaArr = [ 'funding_team_rate' => ['label' => "Founding Team" , 'factor' => '40' , 'desc' => "Assess the team’s qualifications, industry expertise, and dedication to driving the startup’s success."], 'idea_business_modal_rate' => ['label' => "Idea / Business Model" , 'factor' => '15' , 'desc' => "Evaluate the uniqueness of the idea and the business model's potential for achieving product-market fit."], 'prod_service_sclblty_rate' => ['label' => "Product / Service Scalability" , 'factor' => '20' , 'desc' => "Examine the growth potential of the product/service by analyzing market size, revenue opportunities, and competition."], 'current_traction_rate' => ['label' => "Current Traction", 'factor' => '25' , 'desc' => "Review the startup's current progress, including revenue generation, customer acquisition, and overall execution capabilities."] ]; $initialValues = [ 'funding_team_rate' => $startups_record->funding_team_rate ?? 1, 'idea_business_modal_rate' => $startups_record->idea_business_modal_rate ?? 1, 'prod_service_sclblty_rate' => $startups_record->prod_service_sclblty_rate ?? 1, 'current_traction_rate' => $startups_record->current_traction_rate ?? 1, ]; $urlParam = [ 'startups_id' => $startups_record->id, ]; $remark = $startups_record->remark ?? ""; $interestedChecked = $startups_record->interested == 'Y' ? 'checked' : ''; @endphp