index.blade.php 530 B

123456789101112131415161718
  1. {{-- resources/views/components/allegati/index.blade.php --}}
  2. @props(['allegati' => []])
  3. @if(isset($allegati) && count($allegati) > 0)
  4. <table width="100%">
  5. <tr>
  6. <td width="100%" valign="top" align="center">
  7. <h2>ALLEGATI</h2>
  8. </td>
  9. </tr>
  10. </table>
  11. @foreach($allegati as $allegato)
  12. @if($allegato->is_visible && $allegato->files)
  13. <x-verbale.allegati.file-display :files="explode('|', $allegato->files)" />
  14. @endif
  15. @endforeach
  16. @endif