@extends('layouts.user') @section('content')

{{ __("Applied Jobs") }}

{{ __("Ready to jump back in?") }}
@include('admin.message')

{{ __("My Applied Jobs") }}

@if($rows->count() > 0) @foreach($rows as $row) @if($row->jobInfo) @endif @endforeach @else @endif
{{ __("Job Title") }} {{ __("Date Applied") }} {{ __("Status") }} {{ __("Action") }}
@if($row->jobInfo->company && $company_logo = $row->jobInfo->getThumbnailUrl()) @endif

{{ $row->jobInfo->title }}

    @if($row->jobInfo->category) @php $cat_translation = $row->jobInfo->category->translateOrOrigin(app()->getLocale()) @endphp
  • {{ $cat_translation->name }}
  • @endif @if($row->jobInfo->location) @php $location_translation = $row->jobInfo->location->translateOrOrigin(app()->getLocale()) @endphp
  • {{ $location_translation->name }}
  • @endif
{{ display_date($row->created_at) }} {{ $row->status }}
  • @if($row->status == 'pending')
  • @endif
{{ __("No Items") }}
{{$rows->appends(request()->query())->links()}}
@endsection @section('footer') @endsection