IMMREX7
@extends('teachers.teacher_layout')
@section('content')
<div class="row clearfix">
<!--</div>
<div class="row clearfix">-->
<div class="col-sm-12">
<div class="card">
<div class="header">
<h2><strong>List Of Students</strong></h2>
</div>
<div class="body table-responsive">
<table class="table table-bordered table-striped table-hover datatable" id="tableexp">
<thead>
<tr>
<th>S. No.</th>
<th>EC No</th>
<th>Name</th>
<th>Class</th>
<th>Section</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php $i = 1; ?>
@foreach($students as $value)
<tr>
<th scope="row">{{$i}}</th>
<td>{{$value->ecNo}}</td>
<td>{{$value->name}}</td>
<td>@if(isset($value->classM)) {{$value->classM->className}} @endif</td>
<td>@if(isset($value->section)) {{$value->section->sectionName}} @endif</td>
<td><a href="{{url('teacher/exam-result/'.$id.'/view?student='.$value->idStudent)}}" target="_blank">View Results</a></td>
</tr>
<?php $i++; ?>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
@stop
@section('script')
<script>
$(function () {
$('#tableexp').DataTable();
});
</script>
@stop
Copyright © 2021 -