@extends('adminlte::page') @section('title', 'Visament Applications') @section('content_header')

Visament Applications

@stop @section('content')
User
Type
Country
State
Stay Duration
Total Members
Fees Processing
Payment
Date Travel
Steps Completed
Payment
Action
@foreach ($applications as $key=>$value)
User
{{$value->user->name ?? ""}}
Type
{{$value->form_type}}
Country
{{!empty($value->country)?$value->country->name:''}}
State
{{!empty($value->state)?$value->state->name:''}}
Stay Duration
{{!empty($value->number_of_days)?$value->number_of_days.' days':''}}
Total Members
{{$value->total_member}}
Fees Processing
€ {{$value->calculated_processing_fees}}
Payment
{{$value->payment}}
Expected Travel Date
{{!empty($value->expected_travel_date)?date('Y-m-d',strtotime($value->expected_travel_date)):''}}
Steps Completed
{{$value->step_updated}}
Payment
Action
Name
Email
Phone
Appointment Date
Created
Action
@if(count($value->appointments) > 0) @foreach ($value->appointments as $keyAp=>$valueAP)
Name
{{$valueAP->name}}
Email
{{$valueAP->email}}
Phone
{{$valueAP->mobile}}
Appointment Date
{{$valueAP->appointment_date}}
Created
{{date('d-m-y',strtotime($valueAP->created_at))}}
Action
@if($valueAP->documents_submitted == 'YES') View Documents @endif
@endforeach @else
No appointments added till now.
@endif
@endforeach
{{ $applications->links() }}
@stop