IMMREX7
@extends('students.student_layout')
@section('content')
<div class="row clearfix">
<div class="col-sm-12">
<div class="card">
<div class="header">
<h2><strong>Holidays</strong></h2>
</div>
<div class="body table-responsive">
<table class="table table-bordered table-striped table-hover js-basic-example dataTable">
<thead>
<tr>
<th>S. No.</th>
<th>Type</th>
<th>Holiday Name</th>
<th>From Date</th>
<th>To Date</th>
</tr>
</thead>
<tbody>
<?php $i = 1; ?>
@foreach($holidays as $var)
<tr>
<th scope="row">{{$i}}</th>
<td>{{$var->type}}</td>
<td>{{$var->holidayName}}</td>
<td>{{$var->fromDate}}</td>
<td>{{$var->toDate}}</td>
</tr>
@endforeach
<?php $i++; ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
@stop
Copyright © 2021 -