| 123456789101112131415161718 |
- {{-- resources/views/components/allegati/index.blade.php --}}
- @props(['allegati' => []])
- @if(isset($allegati) && count($allegati) > 0)
- <table width="100%">
- <tr>
- <td width="100%" valign="top" align="center">
- <h2>ALLEGATI</h2>
- </td>
- </tr>
- </table>
- @foreach($allegati as $allegato)
- @if($allegato->is_visible && $allegato->files)
- <x-verbale.allegati.file-display :files="explode('|', $allegato->files)" />
- @endif
- @endforeach
- @endif
|