@extends('backend.layouts.app') @section('title') {{ __('candidate_list') }} @endsection @section('content')
{{ __('candidate') }} | {{ __('role') }}/{{ __('position') }} | {{ __('applied_jobs') }} | @if (userCan('candidate.update')){{ __('account') }} {{ __('status') }} | @endif @if (userCan('candidate.update')){{ __('email_verification') }} | @endif{{ __('joined_date') }} | @if (userCan('candidate.update') || userCan('candidate.delete')){{ __('action') }} | @endif|
---|---|---|---|---|---|---|---|
{{ $candidate->user->name }}{{ $candidate->user->email }} |
{{ $candidate->jobRole->name ?? '' }} |
{{ $candidate->applied_jobs_count }} {{ __('applied_jobs') }} | @if (userCan('candidate.update'))
{{ $candidate->user->status == 1 ? __('activated') : __('deactivated') }} |
@endif
@if (userCan('candidate.update'))
{{ $candidate->user->email_verified_at ? __('verified') : __('unverified') }} |
@endif
{{ Carbon\Carbon::parse($candidate->created_at)->format('d M, Y') }} | @if (userCan('candidate.update') || userCan('candidate.delete'))
@if (userCan('candidate.view'))
{{__('view_profile')}}
|
@endif
|
{{ __('no_data_found') }} |