@extends('front.layouts.master') @section('title', 'Job Alert') @section('content')
@include('front.pages.candidate.candidate-sidebar')
settings-icon {{ translate('Job Alert') }}:
@if (count($jobAlerts) > 0) @foreach ($jobAlerts as $job) @endforeach
{{ translate('Job Title') }} {{ translate('Deadline') }} {{ translate('Company') }} {{ translate('Action') }}
  • location-icon{{ $job->city_name }},{{ $job->country_name }}
  • arrow-icon {{ Carbon\Carbon::parse($job->alert_date)->diffForHumans() }}
{{ customDateFormate($job->job_deadline) }} {{ $job?->company?->company_name }}
{{ $jobAlerts->lastItem() }} {{ translate('Results Showing In') }} {{ $jobAlerts->total() }} {{ translate('Jobs') }}
{{ $jobAlerts->links('front.vendor.pagination.custom') }}
@else
{{ no_results_found("You haven't job alert any jobs yet.", 'Set job alert or update alert.', 'frontend/assets/images/bg/no-search-icon.svg') }}
@endif
@endsection