@extends('front.pages.company-dashboard.main') @section('title', 'Job List') @section('dashboard-main-content')

{{ translate('Job List') }} :

{{ translate('Create Job Post') }}
search-icon
calendar-icon

{{ translate('Show per page') }}

@foreach ($allJobList as $key => $job) @endforeach
{{translate('Job Title')}} {{translate('Applicants')}} {{translate('Rejected')}} {{translate('Viewed')}} {{translate('Shortlisted')}} {{translate('Hired')}} {{translate('Action')}}
{{ $job->getTranslation('job_title') }}

calendar-icon{{translate('Deadline')}}: {{ customDateFormate($job->job_deadline) }}

status == 1 ? 'checked' : '' }} id="flexSwitchCheckLiveJob"> {{translate('Live')}}
{{ countAllAppliedList($job->id) }} {{ countStatusWize($job->id, REJECTED) }} {{ countStatusWize($job->id, VIEW) }} {{ countStatusWize($job->id, SHORTLIST) }} {{ countStatusWize($job->id, HIRED) }}
{{ $allJobList->lastItem() }} {{translate('Results Showing In ')}}{{ $allJobList->total() }} {{translate('Jobs')}}
{{ $allJobList->links('front.vendor.pagination.custom') }}
@endsection @push('comapny_scripts') @include('js.company.company-job') @endpush