@extends('admin.layouts.admin_layout') @section('content')

Unlocked Candidates for {{ $company->name }}

Unlocked Candidates
@if(isset($users) && count($users) > 0) @foreach($users as $user) @endforeach
Name Email Phone Location Functional Area Career Level Experience Actions
{{ $user->getName() }} {{ $user->email }} {{ $user->phone ?? 'N/A' }} {{ $user->getCity('city') ?? 'N/A' }} {{ $user->getFunctionalArea('functional_area') ?? 'N/A' }} {{ $user->getCareerLevel('career_level') ?? 'N/A' }} {{ $user->getJobExperience('job_experience') ?? 'N/A' }} View Profile
@else
No Unlocked Candidates Found!

This company has not unlocked any candidates yet.

@endif
@push('scripts') @endpush @endsection