@extends('layouts.master') @section('page_title', 'Student Information - '.$my_class->name) @section('content')
Students List
{!! Qs::getPanelOptions() !!}
@foreach($students as $s) @endforeach
S/N Photo Name ADM_No Section Email Action
{{ $loop->iteration }} photo {{ $s->user->name }} {{ $s->adm_no }} {{ $my_class->name.' '.$s->section->name }} {{ $s->user->email }}
@foreach($sections as $se)
@foreach($students->where('section_id', $se->id) as $sr) @endforeach
S/N Photo Name ADM_No Email Action
{{ $loop->iteration }} photo {{ $sr->user->name }} {{ $sr->adm_no }} {{ $sr->user->email }}
@endforeach
{{--Student List Ends--}} @endsection