| 1234567891011121314151617181920212223 |
- {{-- resources/views/components/verbalizzanti/index.blade.php --}}
- <table width="100%">
- <tr>
- <td width="33%" align="center">
- <b>IL RESPONSABILE DELL'UFFICIO</b>
- <br><br>
- FRANCESCO MAROZZA
- <br>
- <small>COMMISSARIO COORDINATORE</small>
- </td>
- <td width="33%" align="center"></td>
- <td width="33%" align="center">
- <b>VERBALIZZANTI</b><br><br>
- @for ($i = 1; $i <= 5; $i++)
- @if ($record->{"accertatore_$i"} > 0)
- {{ $record->{"accertatore_{$i}_value"}->name }}
- <br><small>{{ $record->{"grado_accertatore_{$i}_value"}->name }}</small>
- <br>
- @endif
- @endfor
- </td>
- </tr>
- </table>
|