index.blade.php 802 B

1234567891011121314151617181920212223
  1. {{-- resources/views/components/verbalizzanti/index.blade.php --}}
  2. <table width="100%">
  3. <tr>
  4. <td width="33%" align="center">
  5. <b>IL RESPONSABILE DELL'UFFICIO</b>
  6. <br><br>
  7. FRANCESCO MAROZZA
  8. <br>
  9. <small>COMMISSARIO COORDINATORE</small>
  10. </td>
  11. <td width="33%" align="center"></td>
  12. <td width="33%" align="center">
  13. <b>VERBALIZZANTI</b><br><br>
  14. @for ($i = 1; $i <= 5; $i++)
  15. @if ($record->{"accertatore_$i"} > 0)
  16. {{ $record->{"accertatore_{$i}_value"}->name }}
  17. <br><small>{{ $record->{"grado_accertatore_{$i}_value"}->name }}</small>
  18. <br>
  19. @endif
  20. @endfor
  21. </td>
  22. </tr>
  23. </table>