@extends('backend.layouts.app') @section('title') {{ __('job_list') }} @endsection @section('content') @php $userr = auth()->user(); @endphp

{{ $job->title }}

@method('DELETE') @csrf

{{ $job->title }}

{{ $job->company && $job->company->user ? $job->company->user->name : '-' }} · {{ $job->job_type->name ?? '' }} @if ($job->is_remote) · {{ __('remote') }} @endif

@if ($job->salary_mode == 'range')

{{ getFormattedNumber($job->min_salary) }} - {{ getFormattedNumber($job->max_salary) }} {{ currentCurrencyCode() }}

@else

{{ $job->custom_salary }}

@endif

{{ $job->salary_type->name }}

@if ($job->status == 'pending')
@csrf @method('PUT') status == 'pending' ? 'checked' : '' }}>
@endif @if ($job->status == 'active' || $job->status == 'pending')
@csrf @method('PUT') status == 'active' ? 'checked' : '' }}>
@endif @if ($job->status == 'active' || $job->status == 'expired')
@csrf @method('PUT') status == 'expired' ? 'checked' : '' }}>
@endif

{{ __('category') }}

{{ $job->category ? $job->category->name : '' }}

{{ __('job_role') }}

{{ $job->role ? $job->role->name : '' }}

{{ __('experience') }}

{{ $job->experience ? $job->experience->name : '' }}

{{ __('education') }}

{{ $job->education ? $job->education->name : '' }}

{{ __('gender') }}

{{ ucfirst($job->gender) }}

{{ __('deadline') }}

{{ date('D, d M Y', strtotime($job->deadline)) }}

@if ($job->company)

{{ __('website') }}

{{ $job->company->website }}
@endif
{{ __('description') }}

{!! $job->description !!}

{{ __('tags') }}

@foreach ($job->tags as $skill) {{ $skill->name }} @endforeach

{{ __('benefits') }}

@foreach ($job->benefits as $language) {{ $language->name }} @endforeach

{{ __('skills') }}

@foreach ($job->skills as $skill) {{ $skill->name }} @endforeach

@php $map = $setting->default_map; @endphp @if ($map == 'google-map')
@else
@endif
@endsection @section('style') @include('map::links') @endsection @section('script') {{-- Leaflet --}} @endsection