@extends('layouts.app') @section('content') @include('includes.header')

{{__('Welcome to Your Candidate Dashboard')}}

@include('flash::message')
@include('includes.user_dashboard_menu')
@if(count(auth()->user()->getProfileProjectsArray())==0 || count(auth()->user()->getProfileCvsArray())==0 || count(auth()->user()->profileExperience()->get()) == 0 || count(auth()->user()->profileEducation()->get()) == 0 || count(auth()->user()->profileSkills()->get()) == 0)
Your Resume is incomplete please update.
@endif @include('includes.user_dashboard_stats')
{{auth()->user()->printUserCoverImage()}}
{{auth()->user()->printUserImage()}}

{{auth()->user()->name}}

  • {{Auth::user()->getLocation()}}
  • {{auth()->user()->phone}}
  • {{auth()->user()->email}}

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

@if(isset($appliedJobs) && count($appliedJobs)) @foreach($appliedJobs as $appliedjob) @php $job = App\Job::where('id', $appliedjob->job_id)->first(); $company = $job->getCompany(); // Assuming you are using the JobApplication model to store applied jobs $appliedDate = $appliedjob->created_at->format('Y-m-d'); @endphp @if(null !== $company) @endif @endforeach
{{ __('Job Title') }} {{ __('Company') }} {{ __('Location') }} {{ __('Applied Date') }} {{ __('Status') }} {{ __('Action') }}
{{ $job->title }}
{{ $company->name }} {{ $job->getCity('city') }} {{ $appliedDate }} {{ $appliedjob->status }} {{ __('View Details') }}
@else

No applied jobs found.

@endif
@if((bool)config('jobseeker.is_jobseeker_package_active')) @php $packages = App\Package::where('package_for', 'like', 'job_seeker')->get(); $package = Auth::user()->getPackage(); if(null !== $package){ $packages = App\Package::where('package_for', 'like', 'job_seeker')->where('id', '<>', $package->id)->where('package_price', '>=', $package->package_price)->get(); } @endphp @if(null !== $package) @include('includes.user_package_msg') @include('includes.user_packages_upgrade') @else @if(null !== $packages) @include('includes.user_packages_new') @endif @endif @endif

{{__('Recommended Jobs')}}

    @if(!empty($matchingJobs) && count($matchingJobs) > 0) @foreach($matchingJobs as $match) @endforeach @else
    {{__('No matching jobs found')}}
    @endif

{{__('My Followings')}} {{__('View All')}}

@include('includes.footer') @endsection @push('scripts') @include('includes.immediate_available_btn') @endpush