@php $upload_file_size = config('common.upload_file_size'); $allow_file_ext = collect(config('common.allow_doc_ext'))->implode(', '); $step_status = @$step_verified_data['step_status']; $document_data = @$step_verified_data['document_data']; $is_multi_placement = @$step_verified_data['is_multi_placement']; $document_status = @$document_data['document_status']; $is_itn_user = (!empty($portfolio->placement_agency_id) && $portfolio->placementAgency->checkAgencySync()) ? 1 : 0; @endphp

Job offer Created

@if(empty($step_status))

This step is disable until user will reach to step.

@else @if(!empty($document_data)) @if($is_multi_placement == true)
@php $is_active = ""; @endphp @foreach($document_data as $key => $item) @php $is_active = ($key == 1) ? 'active' : ""; @endphp
@if(empty(@$item['document_filename']) || empty(@$item['document_download_code']))
Job offer Created will be upload by ITN admin.
@else

Document name: {{ @$item['document_filename'] }}

Document Status: Available to user


@if(array_key_exists('document_download_code', @$item)) @php $dcode = encrypt([ 'dcode' => @$item['document_download_code'], 'doc_filename' => @$item['document_filename'] ]); @endphp View @else View @endif @if($is_itn_user == 0) @endif @endif
@endforeach
@else

Document name: {{ @$document_data['document_filename'] }}

Document Status: Available to user


@if(array_key_exists('document_download_code', $document_data)) @php $dcode = encrypt([ 'dcode' => $document_data['document_download_code'], 'doc_filename' => $document_data['document_filename'] ]); @endphp View @else View @endif @if($is_itn_user == 0) @endif @endif @endif @endif