@if(Auth::user()->userTypeId==1) @include('user-web.layouts.sidebar') @else @include('business.layouts.sidebar') @endif
@if(session('message'))
{{ session('message') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Jobs
Applied Jobs

Job Filter

@if(isset($applied_job)) @foreach($applied_job as $j=>$job)

{{$job->jobTitle}} ({{$job->companyName}})

@if($job->viewed_status == 1) Viewed @else View Pending @endif

{{ucfirst($job->workplaceType)}} - {{ucfirst($job->jobType)}}

{{$job->jobLocation}}

{{$job->jobDescription}}


Applied Job Status: @if(empty($job->job_status)) Pending @else {{ ucfirst($job->job_status) }} @endif

@endforeach @else

No jobs have been applied

@endif