@extends('website.layouts.app') @section('title') {{ __('favorite_jobs') }} @endsection @section('main')

{{ __('favorite_jobs') }} ({{ $jobs->total() }})

@if ($jobs->count() > 0) @foreach ($jobs as $job)
@if ($job->can_apply)
@if ($job->deadline_active) @if (!$job->applied) @else @endif @else @endif
@else @if ($job->apply_on == 'custom_url') {{ __('apply_now') }} @else {{ __('apply_now') }} @endif @endif
@endforeach @else @endif
@if ($jobs->total() > $jobs->count()) @endif
{{-- Apply job Modal --}} @endsection @section('script') @yield('child_js') @endsection