@include('backend.layouts.autocomplete') @extends('backend.layouts.app') @section('content')

{{ TranslationManager::translate('Application Details') }}

{{ TranslationManager::translate('Name') }}: {{ $applyForJob->name }}

{{ TranslationManager::translate('Phone') }}: {{ $applyForJob->phone }}

{{ TranslationManager::translate('Email') }}: {{ $applyForJob->email }}

{{ TranslationManager::translate('Location') }}: {{ $applyForJob->location }}

{{ TranslationManager::translate('Available After') }}: {{ $applyForJob->available_after }}

{{ TranslationManager::translate('Facebook') }}: {{ $applyForJob->facebook }}

@if ($applyForJob->image)

{{ TranslationManager::translate('Image') }}:

@endif @if ($applyForJob->cv)

{{ TranslationManager::translate('CV') }}: {{ TranslationManager::translate('Download CV') }}

@endif

{{ TranslationManager::translate('Job Info') }}

{{ TranslationManager::translate('Job Name') }}: {{ $applyForJob->job?->getTranslation('name', app()->getLocale()) ?? '-' }}

{{ TranslationManager::translate('Description') }}: {{ $applyForJob->job?->getTranslation('description', app()->getLocale()) ?? '-' }}

{{ TranslationManager::translate('Company') }}: {{ $applyForJob->job?->getTranslation('company_name', app()->getLocale()) ?? '-' }}

{{ TranslationManager::translate('Location') }}: {{ $applyForJob->job?->getTranslation('location', app()->getLocale()) ?? '-' }}

{{ TranslationManager::translate('Last Date') }}: {{ $applyForJob->job?->last_date ?? '-' }}

@endsection @push('scripts') @endpush