Education Details
@php
$educationQualifications = $skillmatrix->qualifications->where(
'type',
'Education',
);
@endphp
S.No |
Education |
@if ($educationQualifications->isNotEmpty())
@foreach ($educationQualifications as $ed => $educate)
{{ ++$ed }} |
{{ $educate->name }} |
@endforeach
@else
No education
qualifications found |
@endif
Certificate Details
@php
$certificateQualifications = $skillmatrix->qualifications->where(
'type',
'Certification',
);
@endphp
S.No |
Certificate |
@if ($certificateQualifications->isNotEmpty())
@foreach ($certificateQualifications as $ct => $certify)
{{ $ct++ }} |
{{ $certify->name }} |
@endforeach
@else
No certification
details found |
@endif
@php
$skillTypes = [
'Primary' => 'Primary Skill',
];
@endphp
@foreach ($skillTypes as $type => $label)
{{ $label }} Details
S.No |
{{ $label }} |
Skill Level |
@php
$skills = $skillmatrix->skills->where('type', $type);
@endphp
@if ($skills->isNotEmpty())
@foreach ($skills as $index => $skill)
{{ $loop->iteration }} |
{{ $skill->skill_name }} |
{{ isset($skill->skillLevel) ? $skill->skillLevel->name : '-' }}
|
@endforeach
@else
No skill details
found |
@endif
@endforeach
@php
$skillTypes = [
'Secondary' => 'Secondary Skill',
];
@endphp
@foreach ($skillTypes as $type => $label)
{{ $label }} Details
S.No |
{{ $label }} |
Skill Level |
@php
$skills = $skillmatrix->skills->where('type', $type);
@endphp
@if ($skills->isNotEmpty())
@foreach ($skills as $index => $skill)
{{ $loop->iteration }} |
{{ $skill->skill_name }} |
{{ isset($skill->skillLevel) ? $skill->skillLevel->name : '-' }}
|
@endforeach
@else
No skill details
found |
@endif
@endforeach
@php
$skillTypes = [
'Other' => 'Other Skill',
];
@endphp
@foreach ($skillTypes as $type => $label)
{{ $label }} Details
S.No |
{{ $label }} |
Skill Level |
@php
$skills = $skillmatrix->skills->where('type', $type);
@endphp
@if ($skills->isNotEmpty())
@foreach ($skills as $index => $skill)
{{ $loop->iteration }} |
{{ $skill->skill_name }} |
{{ isset($skill->skillLevel) ? $skill->skillLevel->name : '-' }}
|
@endforeach
@else
No skill details
found |
@endif
@endforeach