@extends('admin.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|
|---|---|---|---|---|---|---|
{{ $job->title }}{{ $job->company && $job->company->user ?$job->company->user->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 }} |
{{ date('j F, Y', strtotime($job->deadline)) }} | @if (userCan('job.update'))
@if ($job->status == 'pending')
@endif
@if ($job->status == 'active' || $job->status == 'expired')
@endif
|
@endif
{{ __('view_details') }} |
|
| {{ __('no_data_found') }} | ||||||