| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {{-- resources/views/components/accertamenti/passeggeri.blade.php --}}
- <style>
- .striped-table {
- width: 100%;
- border-collapse: collapse;
- }
- .striped-table th, .striped-table td {
- border: 1px solid #000;
- padding: 8px;
- }
- .striped-table tr:nth-child(even) {
- background-color: #f2f2f2;
- }
- .striped-table tr:nth-child(odd) {
- background-color: #fff;
- }
- </style>
- <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"> ACCERTAMENTI PASSEGGERI</td>
- </tr>
- </table>
- </td>
- <td width="80%">
- <table class="striped-table">
- @if($datiCintureSicurezza)
- @for($i = 0; $i <= 3; $i++)
- <tr>
- <td width="100%" class="" style="border: none!important; padding-bottom:10px!important;">
- <b>CINTURE SICUREZZA PASSEGGERO{{ $i + 1 }}:</b>
- @php
- $fieldName = "passeggeri_{$i}";
- $value = $datiCintureSicurezza?->$fieldName;
- @endphp
- {{ $getYesNoStatus($value) }}
- </td>
- </tr>
- @endfor
- @if($datiCasco)
- <tr>
- <td width="100%" class="" style="border: none!important; padding-bottom:10px!important;">
- <b>USO CASCO:</b>
- {{ $getYesNoStatus($datiCasco?->passeggeri) }}
- </td>
- </tr>
- @endif
- @if(($datiCascoOmologazione) && $getYesNoStatus($datiCasco?->passeggeri) =='SI' )
- <tr>
- <td width="100%" class="" style="border: none!important; padding-bottom:10px!important;">
- <b>CASCO OMOLOGAZIONE:</b>
- {{ $datiCascoOmologazione?->passeggeri ?? 'NON RILEVATO' }}
- </td>
- </tr>
- @endif
- @if($datiVeicolo && $datiVeicolo?->sistema_ritenuta_minori)
- <tr>
- <td width="100%" class="" style="border: none!important; padding-bottom:10px!important;">
- <b>SISTEMA RITENUTA MINORI:</b>
- {{ $getYesNoStatus($datiVeicolo?->sistema_ritenuta_minori) }}
- </td>
- </tr>
- @if($datiVeicolo?->sistema_ritenuta_minori == 1)
- <tr>
- <td width="100%" class="" style="border: none!important; padding-bottom:10px!important;">
- <b>SISTEMA RITENUTA MINORI OMOLOGAZIONE:</b>
- {{ $datiVeicolo?->sistema_ritenuta_minori_omologazione ?? 'NON RILEVATO' }}
- </td>
- </tr>
- @endif
- @endif
- @endif
- </table>
- </td>
- </tr>
- </table>
|