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

{{ __('applied_jobs') }} ({{ $appliedJobs->total() }})

@if ($appliedJobs->count() > 0) @foreach ($appliedJobs as $job) @endforeach @else @endif
{{ __('job') }} {{ __('date_applied') }} {{ __('status') }} {{ __('action') }}
{{ date('M d, Y s:m', strtotime($job->pivot->created_at)) }} @if ($job->deadline_active)
{{ __('active') }}
@else
{{ __('expired') }}
@endif

{{ __('no_data_found') }}

@if ($appliedJobs->total() > $appliedJobs->count()) @endif
@endsection