File "load.blade.php"
Full Path: /home/isoftco/public_html/hrm/resources/views/admin/attendances/load.blade.php
File size: 529 bytes
MIME-type: text/html
Charset: utf-8
<table class="table table-striped custom-table m-b-0">
<thead>
<tr>
<th>Employee</th>
@for($i =1; $i <= $daysInMonth; $i++)
<th>{{ $i }}</th>
@endfor
</tr>
</thead>
<tbody>
@foreach($employeeAttendence as $key => $attendance)
<tr>
<td> {{ substr($key, strripos($key,'#')+strlen('#')) }} </td>
@foreach($attendance as $day)
<td>{!! $day !!}</td>
@endforeach
</tr>
@endforeach
</tbody>
</table>