index.blade.php 869 B

12345678910111213141516171819202122232425262728
  1. {{-- resources/views/components/allegati/index.blade.php --}}
  2. @props(['allegati' => []])
  3. @php
  4. $hasVisibleAllegati = false;
  5. foreach ($allegati as $allegato) {
  6. if ($allegato->is_visible && $allegato->files && $allegato->gallery_type == 1 && $allegato->is_visible == true) {
  7. $hasVisibleAllegati = true;
  8. break;
  9. }
  10. }
  11. @endphp
  12. @if($hasVisibleAllegati)
  13. <table width="100%">
  14. <tr>
  15. <td width="100%" valign="top" align="center">
  16. <h2>ALLEGATI FOTOGRAFICI</h2>
  17. </td>
  18. </tr>
  19. </table>
  20. @foreach($allegati as $allegato)
  21. @if($allegato->is_visible && $allegato->files && $allegato->gallery_type == 1 && $allegato->is_visible == true)
  22. <x-verbale.allegati.file-display :files="explode('|', $allegato->files)" />
  23. @endif
  24. @endforeach
  25. @endif