@extends('adminlte::page')
@section('title', 'Applicant '.$appointment->name)
@section('content_header')
Applicant {{$appointment->name}} Documents
@stop
@section('content')
@php
$fronUrl = "http://172.233.143.169/visament/public/uploads/";
@endphp
-
@if(!empty($document['passport_scanned_copy']))
@foreach($document['passport_scanned_copy'] as $key=>$value)
@endforeach
@endif
-
@if(!empty($document['passport_size_pictures']))
@foreach($document['passport_size_pictures'] as $key=>$value)
@endforeach
@endif
- Any old Schengen visa biometrics in past?
- {{$appointment->old_visa_biometric}}
@if(!empty($appointment->old_visa_biometric) && $appointment->old_visa_biometric == 'YES')
- {{$appointment->old_visa_biometric_year}}
-
@if(!empty($document['scanned_copy_visa']))
@foreach($document['scanned_copy_visa'] as $key=>$value)
@endforeach
@endif
@endif
- Who will pay for this trip?
- {{$appointment->pay_for_trip}}
@if($appointment->pay_for_trip == 'SPONSOR')
- Sponsor Relation (If Sponsor?)
- {{$appointment->pay_for_trip_relation}}
@endif
- Current occupation?
- {{$appointment->current_occupation}}
@if($appointment->current_occupation == 'none')
- Describe your Occupation. (If None?)
- {{$appointment->current_occupation_other}}
@endif
@if($appointment->current_occupation == 'employer')
@php $employers = json_decode($appointment->current_occupation_other, true); @endphp
- Employer Details
-
-
Name: {{!empty($employers['name'])?$employers['name']:''}}
-
Address: {{!empty($employers['address'])?$employers['address']:''}}
-
Email: {{!empty($employers['email'])?$employers['email']:''}}
-
Mobile: {{!empty($employers['mobile'])?$employers['mobile']:''}}
@endif
- Marital Status?
- {{$appointment->maritial_status}}
- Visiting countries in Schengen?
-
@if(!empty($appointment->visiting_countries))
@php $ids = explode(',', $appointment->visiting_countries); @endphp
@foreach($countries as $key=>$value)
@if(in_array($key,$ids))
{{$value}}
@endif
@endforeach
@endif
- Passport Pictures: Two recent (35x45mm)
-
@if(!empty($document['passport_size_pictures']))
@foreach($document['passport_size_pictures'] as $key=>$value)
@endforeach
@endif
- Valid Passport: 2 free pages
-
@if(!empty($document['valid_passport']))
@foreach($document['valid_passport'] as $key=>$value)
@endforeach
@endif
- Marriage Certificate(If Married).
-
@if(!empty($document['marriage_certificate']))
@foreach($document['marriage_certificate'] as $key=>$value)
@endforeach
@endif
- Residence Permit(if applicable)
-
@if(!empty($document['residence_permit']))
@foreach($document['residence_permit'] as $key=>$value)
@endforeach
@endif
- Passport Copies: Previous visas (last 3 years).
-
@if(!empty($document['previous_visas']))
@foreach($document['previous_visas'] as $key=>$value)
@endforeach
@endif
- Employment Evidence: (if applicable)
- Employment Evidence: (Employmee NOC)
-
@if(!empty($document['employee_noc']))
@foreach($document['employee_noc'] as $key=>$value)
@endforeach
@endif
- Employment Evidence: (3 months's pay slips)
-
@if(!empty($document['employee_payslip']))
@foreach($document['employee_payslip'] as $key=>$value)
@endforeach
@endif
- Certificate (if Self Employed)
-
@if(!empty($document['self_employed_certificate']))
@foreach($document['self_employed_certificate'] as $key=>$value)
@endforeach
@endif
- 6 months Bank Statement (if Self Employed)
-
@if(!empty($document['self_employed_bank_statement']))
@foreach($document['self_employed_bank_statement'] as $key=>$value)
@endforeach
@endif
- Tax Return (if Self Employed)
-
@if(!empty($document['self_employed_tax_return']))
@foreach($document['self_employed_tax_return'] as $key=>$value)
@endforeach
@endif
- Invesment Account Statement (Last 6 Months)
-
@if(!empty($document['investment_account_statement']))
@foreach($document['investment_account_statement'] as $key=>$value)
@endforeach
@endif
- For Students (Including Minors): School letter (30 days), signed by HOD
-
@if(!empty($document['student_school_letter']))
@foreach($document['student_school_letter'] as $key=>$value)
@endforeach
@endif
- Travel Details: Include itinerary, round trip ticket, and hotel booking
-
@if(!empty($document['travel_details']))
@foreach($document['travel_details'] as $key=>$value)
@endforeach
@endif
- Medical Insurance Certificate: UK/Schengen coverage.
-
@if(!empty($document['medical_insurance']))
@foreach($document['medical_insurance'] as $key=>$value)
@endforeach
@endif
- Economic Proof:
- Economic Proof: (3 months' bank statements.)
-
@if(!empty($document['economic_proof_bank_statement']))
@foreach($document['economic_proof_bank_statement'] as $key=>$value)
@endforeach
@endif
- Economic Proof: (Positive Balance.)
-
@if(!empty($document['economic_proof_positive_balance']))
@foreach($document['economic_proof_positive_balance'] as $key=>$value)
@endforeach
@endif
@stop