@extends('frontend.layouts.app') @section('content') @include('frontend.partials.page-header',['pageTitle'=>'Training & Placement Cell','pageSubtitle'=>'TCS Priority College · Shaping careers since 1983','breadcrumbs'=>[['name'=>'Placements']]]) @if($data['current_stats'])@php $s=$data['current_stats']; @endphp
{{ $s->academic_year }} Highlights
@foreach([[$s->ug_placed,'UG Placed','+'],[$s->pg_placed,'PG Placed','+'],[number_format($s->highest_package_lpa,1),'Highest (LPA)',' L'],[number_format($s->median_package_lpa,1),'Median (LPA)',' L'],[number_format($s->average_package_lpa,1),'Average (LPA)',' L'],[$s->companies_visited,'Companies','+'],[ $s->offers_received,'Total Offers','+']] as $i=>[$v,$l,$suf])
{{ $v }}{{ $suf }}
{{ $l }}
@endforeach
@if($data['companies']->count())

Our Recruiters

@foreach($data['companies'] as $c)
@if($c->logo){{ $c->name }} @else{{ $c->name }}@endif
@endforeach
@endif
@if($data['top_achievements']->count())

Our Achievers

@foreach($data['top_achievements'] as $a)
@if($a->photo){{ $a->student_name }} @else
{{ substr($a->student_name,0,1) }}
@endif
{{ $a->student_name }}
@if($a->role)
{{ $a->role }}
@endif @if($a->company)
@ {{ $a->company->name }}
@endif @if($a->package_lpa)₹ {{ $a->package_lpa }} LPA@endif
@endforeach
@endif @if($data['all_stats']->count()>1)

Year-wise Statistics

@foreach(['Year','UG Placed','PG Placed','Highest (LPA)','Median (LPA)','Companies'] as $h) @endforeach @foreach($data['all_stats'] as $stat) @endforeach
{{ $h }}
{{ $stat->academic_year }}@if($stat->is_current)Current@endif {{ $stat->ug_placed }} {{ $stat->pg_placed }} ₹{{ $stat->highest_package_lpa }}L ₹{{ $stat->median_package_lpa }}L {{ $stat->companies_visited }}
@endif @endif @endsection