@php $industry_selected = @$step_verified_data['industry_selected']; $program_name = @$step_verified_data['program_name']; $eligible_industries = config('common.eligible_industries'); @endphp

Eligibility Test

@if($step_status == 1 && @$is_step_success == 1)

User has been successfully passed the eligibility test.

@if(!empty($industry_selected) && array_key_exists($industry_selected,$eligible_industries))

Selected Industry: {{ $eligible_industries[$industry_selected] }}

@endif @if(!empty($program_name))

Program Name: {{ $program_name }}

@endif @else

User still not complete eligibility test.

@endif