Skip to content

Commit

Permalink
Agora a folha está igual a do JupterWeb
Browse files Browse the repository at this point in the history
  • Loading branch information
alecostaweb committed Dec 4, 2023
1 parent d4c28f0 commit d7caaea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/pdfs/folha.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@
<td style='width:20%'>Registro</td>
</tr>

@for($i = 0; $i <= 16; $i++)
@for($i = 0; $i < 16; $i++)
@if(array_key_exists($i, $dias))
@php $col1 = App\Utils\Util::computeDayMinutes($computes,$dias[$i]); @endphp
@else
@php $col1 = ['','',''] @endphp
@endif

@if(array_key_exists($i+17, $dias))
@php $col2 = App\Utils\Util::computeDayMinutes($computes,$dias[$i+17]); @endphp
@if(array_key_exists($i+16, $dias))
@php $col2 = App\Utils\Util::computeDayMinutes($computes,$dias[$i+16]); @endphp
@else
@php $col2 = ['','',''] @endphp
@endif
Expand Down

0 comments on commit d7caaea

Please sign in to comment.