@extends('frontend.layouts.app') @section('content') @php $dept = $data['department']; @endphp
@if($dept->about)

About the Department

{!! $dept->about !!}
@endif @if($dept->vision || $dept->mission)
@if($dept->vision)

Vision

{{ $dept->vision }}

@endif @if($dept->mission)

Mission

{{ $dept->mission }}

@endif
@endif @if($data['programs']->count())

Programs Offered

@foreach($data['programs'] as $p)
{{ strtoupper($p->type) }}

{{ $p->degree }} in {{ $p->name }}

{{ $p->duration_years }} years{{ $p->intake }} seats@if($p->is_nba_accredited)NBA@endif
Details →
@endforeach
@endif @if($data['faculty']->count())

Faculty

@endif
@if($data['hod_faculty'])

Head of Department

@php $hod = $data['hod_faculty']; @endphp
@if($hod->photo){{ $hod->name }} @else
{{ substr($hod->name,0,1) }}
@endif
{{ $hod->name }}
{{ $hod->designation }}
@if($hod->email){{ $hod->email }}@endif
@endif

Quick Stats

@foreach([['Faculty Members',$data['faculty']->count(),'fas fa-users'],['Programs',$data['programs']->count(),'fas fa-graduation-cap'],['Research Papers',$data['publications_count'],'fas fa-book-open'],['Annual Intake',$dept->intake,'fas fa-user-graduate']] as [$lbl,$val,$icon])
{{ $lbl }} {{ $val }}
@endforeach

Contact

+91 8669638081
{{ $dept->hod_email ?? 'dept@ssgmce.ac.in' }}
Send Enquiry
@endsection