@php $items = [ [ 'no'=>'2.4.1', 'title'=>'Percentage of full-time teachers against sanctioned posts during the last five years', 'url'=>'/qif2/2-4' ], [ 'no'=>'2.4.2', 'title'=>'Percentage of full time teachers with NET/SET/SLET/ Ph. D./D.Sc. / D.Litt./L.L.D. during the last five years (consider only highest degree for count)', 'url'=>'/qif2/2-4' ] ]; $data1 = [ ['title'=>'Full Time Teacher List', 'url' => '#'], ['title'=>'Summary', 'url' => '/qif/qif2/2_4/2_4_1/Summary 2.4.1.pdf'], ['title'=>'Sanctioned post', 'url' => '/qif/qif2/2_4/2_4_1/Sanctioned post_2018-23.pdf'] ]; $data2 = [ ['title'=>'Number of full time teachers year wise in last five years', 'url' => '#'], ['title'=>'Summary', 'url' => '/qif/qif2/2_4/2_4_2/Summary 2.4.2.pdf'], ['title'=>'Number of full time teachers in last five years (without repeat), Faculty List left during last five years', 'url' => '/extended/teacher/Faculty_No_updated.xlsx'], // ['title'=>'', 'url' => '/qif/qif2/2_4/2_4_2/Feculty member left.pdf'], ['title'=>'Ph.D. Faculty List', 'url' => '/qif/qif2/2_4/2_4_2/Ph.D faculty list.pdf'], ['title'=>'Degrees / Notifications', 'url' => '/qif/qif2/2_4/2_4_2/Ph.D Certificates 2.4.2.pdf'] ]; $data_year = [ ['title'=> '2022-23', 'url'=> '/qif/qif2/2_4/2_4_1/2022-23.pdf'], ['title'=> '2021-22', 'url'=> '/qif/qif2/2_4/2_4_1/2021-22.pdf'], ['title'=> '2020-21', 'url'=> '/qif/qif2/2_4/2_4_1/2020-21.pdf'], ['title'=> '2019-20', 'url'=> '/qif/qif2/2_4/2_4_1/2019-20.pdf'], ['title'=> '2018-19', 'url'=> '/qif/qif2/2_4/2_4_1/2018-19.pdf'] ]; $data_year2 = [ ['title'=> '2022-23', 'url'=> '/qif/qif2/2_4/2_4_1/2022-23.pdf'], ['title'=> '2021-22', 'url'=> '/qif/qif2/2_4/2_4_1/2021-22.pdf'], ['title'=> '2020-21', 'url'=> '/qif/qif2/2_4/2_4_1/2020-21.pdf'], ['title'=> '2019-20', 'url'=> '/qif/qif2/2_4/2_4_1/2019-20.pdf'], ['title'=> '2018-19', 'url'=> '/qif/qif2/2_4/2_4_1/2018-19.pdf'] ]; @endphp @extends('frontend.mainlayout') @section('title', 'QIF 2.4: Teacher Profile and Quality - RERF Group of Institutions') @section('banner') @include('qic-nav')

QIF 2.4: Teacher Profile and Quality

@endsection @section('main')
@foreach($items as $item) @endforeach
{{$item['no'] ?? ''}} {{$item['title'] ?? ''}}
    @if($item['no'] == '2.4.1') @foreach($data1 as $data)
  1. {{$data['title'] ?? ''}} @if($data['title'] == 'Full Time Teacher List') @foreach($data_year as $year) @endforeach @endif
  2. @endforeach @endif @if($item['no'] == '2.4.2') @foreach($data2 as $data)
  3. {{$data['title'] ?? ''}} @if($data['title'] == 'Number of full time teachers year wise in last five years') @foreach($data_year2 as $year) @endforeach @endif
  4. @endforeach @endif
@endsection