allegato.blade.php 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. @if (!$this->validated)
  28. <td><a wire:click.prevent="editAllegato({{ $allegato->id }})" data-toggle="modal"
  29. data-target="#allegatiModal" class="btn btn-primary btn-block"
  30. style="background-color: orange;border-color: orange;"><i
  31. class="fa fa-edit"></i></i></a></td>
  32. <td><button onclick="confirm('Sei sicuro?') || event.stopImmediatePropagation()"
  33. wire:click.prevent="removeAllegato({{ $allegato->id }})" type="button"
  34. class="btn btn-danger btn-block"><i class="fa fa-trash"></i>&nbsp;</button>
  35. </td>
  36. @endif
  37. </tr>
  38. @if ($allegato->files != '')
  39. <tr>
  40. <td colspan="5" style="border-top:0px solid;">
  41. @foreach (explode('|', $allegato->files) as $a)
  42. <a href="{{ url('/storage/' . $a) }}"
  43. target="_blank">{{ $a }}</a>&nbsp;&nbsp;&nbsp;
  44. @endforeach
  45. </td>
  46. </tr>
  47. @endif
  48. @endforeach
  49. </tbody>
  50. </table>
  51. @if (!$this->validated)
  52. <a class="btn btn-primary " wire:click.prevent="addAllegato(0)" data-toggle="modal"
  53. data-target="#allegatiModal">Aggiungi</a>
  54. @endif
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. </div>