@if(!empty($allData->college->about_college))
College Overview
@php
$college_overview = $allData->college->about_college ?? "Not Updated";
$overview_str_length = mb_strlen($college_overview);
@endphp
@if($college_overview == "Not Updated")
Not Updated
@else
{{mb_strimwidth($college_overview, 0, 200, "...") }}
@endif
{{ $college_overview }}
@endif
@if(!empty($allData->college->about_college))
@if($overview_str_length > 200)
@endif
@endif
{{--
Total Shortlisted
Candidates
{{$shortlisted_candidates}}
Hired
Candidates
{{$totalHiredCandidates}}
--}}
Pre assessed Students Details
@if(count($allData->preassessed) > 6)
View All
@endif
@php
$cur_year = (int)date("Y");
$prev_year = (int)date("Y") - 1;
$prev_prev_year = (int)date("Y") - 2;
@endphp
@if(!empty($allData->preassessed))
@php
$output = [];
$preassessed = $allData->preassessed ?? [];
$index = 1;
foreach ($preassessed as $item) {
if ($index > 6) {
break; // Exit loop if index is 6 or more
}
$branchKey = "branch_" . $index;
$branchName = $item->courseName . "(" . strtoupper($item->specializationName) . ")";
$output[$branchKey] = [];
foreach ($item->compeletion_years as $year => $count) {
$output[$branchKey][] = [
'branch' => $branchName,
'year' => $year,
'hiremee_id_count' => $count,
'courseId' => $item->courseId,
'specializationId' => $item->specializationId
];
}
$index++;
}
@endphp
@foreach($output as $key => $listData)
@php
$cur_year_check_box_value = 0;
$prev_year_check_box_value = 0;
$prev_prev_check_box_value = 0;
@endphp
@foreach($listData as $branch1)
@php
$end = strpos($branch1['branch'], '(');
$shortString = substr($branch1['branch'], 0, $end);
preg_match('#\((.*?)\)#', $branch1['branch'], $match);
$words = preg_split("/\s+/", $match[1]);
$acronym = "";
if(count($words) > 1){
$acronym_array=[];
foreach($words as $w) {
$acronym_array[]= mb_substr($w, 0, 3);
}
$acronym = implode(' ', $acronym_array);
}else{
$acronym = implode(' ', $words);
}
if($branch1['year'] == $cur_year){
$cur_year_check_box_value = $branch1['hiremee_id_count'];
}else if($branch1['year'] == $prev_year){
$prev_year_check_box_value = $branch1['hiremee_id_count'];
}else if($branch1['year'] == $prev_prev_year){
$prev_prev_check_box_value = $branch1['hiremee_id_count'];
}
@endphp
@endforeach
{{$shortString}}({{$acronym}})
{{$cur_year_check_box_value + $prev_year_check_box_value + $prev_prev_check_box_value}}
@endforeach
@else
@endif
{{--
TOP RECRUITERS 10+
@php $files = glob('assets/hiremee-revamp/images/colleges/top-recruiters/*.*'); @endphp
@if(count($files) > 10)
@endif
@for($i = 0; $i < 10; $i++)
@endfor
@for($i = 0; $i < count($files); $i++)
@endfor
Please note, the above logos are updated by the College*
--}}
@php
$topcompanies_profile = json_decode(json_encode($allData->topcompanies_profile));
if (is_object($topcompanies_profile)) {
$topcompanies_profile = (array) $topcompanies_profile;
}
@endphp
@if(count($topcompanies_profile) > 6)
Recent RECRUITERS visit the page 6+
@else
Recent RECRUITERS visit the page {{count($topcompanies_profile)}}
@endif
@php $profile_count = 0; @endphp
@forelse($topcompanies_profile as $company_profile)
@php $profile_count++; @endphp
{{$company_profile->name}}
- {{ !empty($company_profile->city) ? $company_profile->city : 'Not Updated' }}
- No. of Jobs: {{$company_profile->jobs}}
@if($profile_count == 6)
@break
@endif
@empty
@endforelse
{{--
Skills
- Jave
- .Net
- Applications
- Accountancy
- Abstract Algebra
- Application of Spectraoscopy
- Core Java
- Networks and Systems
- Java Programming concepts
- Basic QA
- Core Java
--}}
Free Employability Assessment
Encourage your students to unlock their career potential with HireMee’s Free Employability Assessment.
This intuitive assessment evaluates key competencies and provides a comprehensive employability score, helping candidates understand where they stand in today’s job market. It also connects job seekers directly with potential employers, opening doors to exciting opportunities.
To learn more and get started, visit HireMee’s Assessments platform
Invite your students now!
CLICK HERE...
{{--
Latest Assessments
@if(!empty($latestAssessments))
@foreach($latestAssessments as $assessment)
- {{$assessment->name}}
@endforeach
@endif
--}}