@extends('frontend.layouts.app') @section('title') {{ __('my_jobs') }} @endsection @section('main')
{{ __('job') }} | {{ __('status') }} | {{ __('applications') }} | {{ __('action') }} |
---|---|---|---|
{{ ucfirst($job->job_type->name) }}
{{ $job->days_remaining }}
{{ __('remaining') }}
@if ($job->highlight && $job->highlight_until && $setting->highlight_job_days > 0 && isFuture($job->highlight_until))
{{ __('highlight') }} {{ __('duration') }}:
{{ now()->diffInDays($job->highlight_until) }}
{{ __('days_remaining') }}
@endif
@if ($job->featured && $job->featured_until && $setting->featured_job_days > 0 && isFuture($job->featured_until))
{{ __('featured') }} {{ __('duration') }}:
{{ now()->diffInDays($job->featured_until) }}
{{ __('days_remaining') }}
@endif
|
@if ($job->status == 'active')
{{ __('active') }}
@elseif ($job->status == 'pending')
{{ __('pending') }}
@else
{{ __('job_expire') }}
@endif
|
{{ $job->applied_jobs_count }} {{ __('applications') }}
|