@extends('front.master') @section('header')

{{ $country->name }}

{{ $country->description ? $country->description : '' }}

{{ $country->name }} Visa Plan

@if (count($visa) > 0) @foreach ($visa as $item)

{{ $item->name }}

{{ $item->exp }}

{{ str_replace('_', ' ', ucfirst($item->entry_type)) }}
${{ $item->amount ? $item->amount : 'N/A' }} USD

Processing Time

{{ $item->est_time ? $item->est_time : 'N/A' }}

Validity

{{ $item->exp }}

Stay Duration

{{ $item->stay_time ? $item->stay_time : 'N/A' }} Days

Health Insurance

{{ $item->country->health_insurance == 'required' ? 'Required' : 'Not Required' }}

Fast Processing
24/7 Support
@endforeach @else

No Visa Found!

@endif
@if (count($Business) > 0) @foreach ($Business as $item)

{{ $item->name }}

{{ $item->exp }}

{{ str_replace('_', ' ', ucfirst($item->entry_type)) }}
${{ $item->amount ? $item->amount : 'N/A' }} USD

Processing Time

{{ $item->est_time ? $item->est_time : 'N/A' }}

Validity

{{ $item->exp }}

Stay Duration

{{ $item->stay_time ? $item->stay_time : 'N/A' }} Days

Health Insurance

{{ $item->country->health_insurance == 'required' ? 'Required' : 'Not Required' }}

Fast Processing
24/7 Support
@endforeach @else

No Visa Found!

@endif
@if (count($Transit) > 0) @foreach ($Transit as $item) {{--

{{ $item->name }}

{{ $item->exp }}

@if ($item->entry_type == 'single_entry') Single Entry @elseif($item->entry_type == 'double_entry') Double Entry @elseif($item->entry_type == 'multi_entry') Multi Entry @else Triple Entry @endif

$ {{ $item->amount ? $item->amount : 'N/A' }}

Processing Time: {{ $item->est_time ? $item->est_time : 'N/A' }}
Validity: {{ $item->exp }}
Stay: {{ $item->stay_time ? $item->stay_time : 'N/A' }} Days
Health Insurance: {{ $item->country->health_insurance == 'required' ? 'Required' : 'Not Required' }}
--}}

{{ $item->name }}

{{ $item->exp }}

{{ str_replace('_', ' ', ucfirst($item->entry_type)) }}
${{ $item->amount ? $item->amount : 'N/A' }} USD

Processing Time

{{ $item->est_time ? $item->est_time : 'N/A' }}

Validity

{{ $item->exp }}

Stay Duration

{{ $item->stay_time ? $item->stay_time : 'N/A' }} Days

Health Insurance

{{ $item->country->health_insurance == 'required' ? 'Required' : 'Not Required' }}

Fast Processing
24/7 Support
@endforeach @else

No Visa Found!

@endif
@endsection @section('content') @endsection @section('custom_script') @if (session()->has('message')) @endif @endsection