@if (count(@$data['show']->original['data']['tardyRules']) > 0)
@foreach (@$data['show']->original['data']['tardyRules'] as $key => $row)
| {{ ++$key }} |
{{ $row->tardyRule->title }} |
@php
$className = 'success';
if (@$row->tardyRule->type == 'checkout') {
$className = 'danger';
}
if (@$row->tardyRule->type == 'break') {
$className = 'warning';
}
@endphp
{{ ucfirst(@$row->tardyRule->type) }}
|
{{ @$row->tardyRule->threshold_minutes }} |
{{ @$row->tardyRule->threshold_days }} |
{{ @$row->tardyRule->deduction_days }} |
{{ @$row->tardyRule->description }} |
@endforeach
@else
|
|
@endif