IMMREX7
@extends('students.student_layout')
@section('content')
<div class="row clearfix card">
<?php $si = 0; ?>
<table class="table table-hover">
<thead>
<tr>
<th></th>
<th style="width:60px;"></th>
<th>Name</th>
<th>Academic Details</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@foreach($students as $var)
<?php $si++; ?>
@if(isset($var->classM) && isset($var->section))
<tr>
<td>{{$si}}</td>
<td>
@if(isset($var->photo))
<a href="#" class="">
<img src="{{ asset('storage/schools/'.$var->idSchool.'/students/'.$var->photo)}}" class="rounded-circle" alt="profile-image" width="60" height="60">
</a>
@endif
</td>
<td>{{$var->firstName}} {{$var->middleName}} {{$var->lastName}}</td>
<td> @if(isset($var->classM)) {{$var->classM->className}} @if(isset($var->section)){{$var->section->sectionName}} @endif @endif</td>
<td><a href="{{url('student/dashboard/'.$var->idStudent)}}" class="btn btn-sm btn-success">Go to Dashboard</a></td>
</tr>
@endif
@endforeach
</tbody>
</table>
</div>
@stop
Copyright © 2021 -