@extends('layouts.admin') @section('page-title') {{__('Job Application Details')}} @endsection @section('breadcrumb') @endsection @push('css-page') @endpush @push('script-page') @endpush @section('content')
{{__('Basic Details')}}
{{$jobApplication->name}}

{{ $jobApplication->email}}

@foreach($stages as $stage)
stage==$stage->id)?'checked':''}}>
@endforeach
{{__('Basic Information')}}
{{__('Phone')}}
{{$jobApplication->phone}}
@if(!empty($jobApplication->dob))
{{__('DOB')}}
{{\Auth::user()->dateFormat($jobApplication->dob)}}
@endif @if(!empty($jobApplication->gender))
{{__('Gender')}}
{{$jobApplication->gender}}
@endif @if(!empty($jobApplication->country))
{{__('Country')}}
{{$jobApplication->country}}
@endif @if(!empty($jobApplication->state))
{{__('State')}}
{{$jobApplication->state}}
@endif @if(!empty($jobApplication->city))
{{__('City')}}
{{$jobApplication->city}}
@endif
{{__('Applied For')}}
{{ !empty($jobApplication->jobs)?$jobApplication->jobs->title:'-' }}
{{__('Applied at')}}
{{\Auth::user()->dateFormat($jobApplication->created_at)}}
{{__('CV / Resume')}}
@if(!empty($jobApplication->resume)) @else - @endif
{{__('Cover Letter')}}
{{$jobApplication->cover_letter}}
{{__('Additional Details')}}
@can('create interview schedule') {{__('Create Interview Schedule')}} @endcan
@if(!empty(json_decode($jobApplication->custom_question)))
@foreach(json_decode($jobApplication->custom_question) as $que => $ans) @if(!empty($ans))
{{$que}}

{{$ans}}

@endif @endforeach
@endif {{Form::open(array('route'=>array('job.application.skill.store',$jobApplication->id),'method'=>'post'))}}
@can('add job application skill')
@endcan {{Form::close()}} {{Form::open(array('route'=>array('job.application.note.store',$jobApplication->id),'method'=>'post'))}}
@can('add job application note')
@endcan {{Form::close()}}
@foreach($notes as $note)
@can('delete job application note') @if($note->note_created==\Auth::user()->id)
{!! Form::open(['method' => 'DELETE', 'route' => ['job.application.note.destroy', $note->id],'id'=>'delete-form-'.$note->id]) !!} {!! Form::close() !!}
@endif @endcan
@endforeach
@endsection