| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {{-- resources/views/components/accertamenti/provvedimenti.blade.php --}}
- <table class="table-content striped-table" width="100%">
- <tr>
- <td width="20%" align="center" style="font-size: 20px;">
- <table class="">
- <tr class="tr-sub-title">
- <td class="bold" style="border: none!important;">PROVVEDIMENTI ADOTTATI</td>
- </tr>
- </table>
- </td>
- <td width="80%">
- @for($i = 1; $i <= 3; $i++)
- @if($datiVeicolo?->{"verbale_violazione_numero_$i"})
- <table class="striped-table">
- <tr>
- <td width="100%" style="border: none!important; padding-bottom:10px!important;">
- <b>VERBALE VIOLAZIONE NUMERO:</b>
- {{ $datiVeicolo?->{"verbale_violazione_numero_$i"} }}
- </td>
- </tr>
- @if($datiVeicolo->{"articolo_violato_$i"})
- <tr>
- <td width="100%" style="border: none!important; padding-bottom:10px!important;"> <b>ARTICOLO VIOLATO:</b>
- {{ $datiVeicolo?->{"articolo_violato_$i"} }}
- </td>
- </tr>
- @endif
- @if($datiVeicolo?->{"cds_$i"})
- <tr>
- <td width="100%" style="border: none!important; padding-bottom:10px!important;"> <b>CDS:</b>
- {{ $datiVeicolo?->{"cds_$i"} }}
- </td>
- </tr>
- @endif
- </table>
- @endif
- @endfor
- </td>
- </tr>
- </table>
|