@extends('backend.layouts.app') @section('title') {{ __('job_list') }} @endsection @section('content') @php $userr = auth()->user(); @endphp
{{ __('job') }} | {{ __('category') }}/{{ __('role') }} | {{ __('salary') }} | {{ __('deadline') }} | {{ __('status') }} | @if (userCan('job.update') || userCan('job.delete')){{ __('action') }} | @endif|
---|---|---|---|---|---|---|
@if ($job->company)
@else
{{ $job->title }}{{ $job->company && $job->company->user ? $job->company->user->name : $job->company_name }} · {{ $job->job_type->name ?? '' }} @if ($job->is_remote) · {{ __('remote') }} @endif |
{{ $job->category->name }}{{ $job->role->name }} |
@if ($job->salary_mode == 'range')
{{ getFormattedNumber($job->min_salary) }} - {{ getFormattedNumber($job->max_salary) }} {{ currentCurrencyCode() }}@else{{ $job->custom_salary }}@endif{{ $job->salary_type->name }} |
@php
$dateTime = new DateTime();
$formattedDateTime = $dateTime->format('Y-m-d');
@endphp
@if ($job->deadline <= $formattedDateTime)
{{ date('j F, Y', strtotime($job->deadline)) }}
{{ __('deadline_expired') }} @else {{ date('j F, Y', strtotime($job->deadline)) }} @endif |
@if (userCan('job.update'))
@if ($job->status == 'pending')
@endif
@if ($job->status == 'active' || $job->status == 'pending')
@endif
@if ($job->status == 'active' || $job->status == 'expired')
@endif
|
@endif
{{ __('view_details') }}
|
|
{{ __('no_data_found') }} |