@extends('Template::layouts.frontend') @section('content') @php $policyPages = getContent('policy_pages.element', false, null, true); $banner = getContent('banner.content', true)->data_values; @endphp
{{ __($job->title) }}
{{ getJobTimeDifference($job->created_at, $job->deadline) }}
@if ($job->custom_budget) @lang('Flexible budget available.') @endif
{{ showAmount($job->budget) }}
@lang('Bids'): {{ $job->bids_count }} @lang('Interviews'): {{ $job->interviews }}
@php echo $job->description @endphp
@lang('About the job')

@lang('Posted Job')

{{ showDateTime($job->created_at, 'd M, Y') }}

@lang('Deadline')

{{ showDateTime($job->deadline, 'd M, Y') }}

@lang('Experience level')

@if ($job->skill_level == Status::SKILL_PRO) @lang('Pro Level') @elseif($job->skill_level == Status::SKILL_EXPERT) @lang('Expert') @elseif($job->skill_level == Status::SKILL_INTERMEDIATE) @lang('Intermediate') @else @lang('Entry') @endif

@lang('Project Scope')

@if ($job->project_scope == Status::SCOPE_LARGE) @lang('Large') @elseif($job->project_scope == Status::SCOPE_MEDIUM) @lang('Medium') @else @lang('Small') @endif

@lang('Job Longevity')

@if ($job->job_longevity == Status::JOB_LONGEVITY_WEEK) @lang('Less than 1 Week') @elseif($job->job_longevity == Status::JOB_LONGEVITY_MONTH) @lang('Less than 1 month') @elseif($job->job_longevity == Status::JOB_LONGEVITY_ABOVE_MONTH) @lang('1 to 3 months') @else @lang('3 to 6 months') @endif

@lang('Location')

@lang('100% Remote job')
@lang('Skill and expertise')
    @foreach ($job->skills as $skill)
  • {{ __($skill->name) }}
  • @endforeach
@if ($job->questions)

@lang('Job questions for freelancers')

    @foreach ($job->questions as $question)
  • {{ $question }}
  • @endforeach
@endif
{{ @$totalBiddenFreelancers }} - @lang('Freelancers are bidding on this job')
@include('Template::job_explore.freelancer', [ 'similarFreelancers' => @$biddenFreelancers, ])
@if (@$totalBiddenFreelancers > 5)
@endif
@include('Template::job_explore.info')
@endsection @push('script') @endpush @push('style') @endpush