allegato.blade.php 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <div class="tab-pane fade mt-3" id="tab7" role="tabpanel" aria-labelledby="tab7-tab" wire:ignore.self>
  2. <div class="row">
  3. <div class="col">
  4. <div class="card card-primary">
  5. <div class="card-header">
  6. <h3 class="card-title">Allegati</h3>
  7. </div>
  8. <div class="card-body">
  9. <div class="row">
  10. <table class="table table-hover text-nowrap">
  11. <thead>
  12. <tr>
  13. <th>Nome</th>
  14. <th>Tipologia</th>
  15. <th>Visibile in stampa</th>
  16. <th style="width:100px">&nbsp;</th>
  17. <th style="width:100px">&nbsp;</th>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. @foreach ($allegatiImmagini as $allegato)
  22. <tr>
  23. <td>{{ $allegato->name }}</td>
  24. <td>{{ $this->getAllegatoType($allegato->gallery_type) }}
  25. </td>
  26. <td>{{ $allegato->is_visible ? 'SI' : 'NO' }}</td>
  27. <td><a wire:click.prevent="editAllegato({{ $allegato->id }})" data-toggle="modal"
  28. data-target="#allegatiModal" class="btn btn-primary btn-block"
  29. style="background-color: orange;border-color: orange;"><i
  30. class="fa fa-edit"></i></i></a></td>
  31. <td><button onclick="confirm('Sei sicuro?') || event.stopImmediatePropagation()"
  32. wire:click.prevent="removeAllegato({{ $allegato->id }})" type="button"
  33. class="btn btn-danger btn-block"><i class="fa fa-trash"></i>&nbsp;</button>
  34. </td>
  35. </tr>
  36. @if ($allegato->files != '')
  37. <tr>
  38. <td colspan="5" style="border-top:0px solid;">
  39. @foreach (explode('|', $allegato->files) as $a)
  40. <a href="{{ url('/storage/' . $a) }}"
  41. target="_blank">{{ $a }}</a>&nbsp;&nbsp;&nbsp;
  42. @endforeach
  43. </td>
  44. </tr>
  45. @endif
  46. @endforeach
  47. </tbody>
  48. </table>
  49. <a class="btn btn-primary " wire:click.prevent="addAllegato(0)" data-toggle="modal"
  50. data-target="#allegatiModal">Aggiungi</a>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. </div>