|
@@ -0,0 +1,69 @@
|
|
|
|
|
+{{-- resources/views/components/accertamenti/conducente.blade.php --}}
|
|
|
|
|
+<table class="table-content" width="100%">
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td width="20%" align="center" style="font-size: 20px;">
|
|
|
|
|
+ <table class="">
|
|
|
|
|
+ <tr class="tr-sub-title">
|
|
|
|
|
+ <td class="bold">ACCERTAMENTI CONDUCENTE</td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ </table>
|
|
|
|
|
+ </td>
|
|
|
|
|
+ <td width="80%">
|
|
|
|
|
+ <table>
|
|
|
|
|
+ @if(isset($datiCintureSicurezza->conducente))
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td width="100%" class="">
|
|
|
|
|
+ <b>CINTURE SICUREZZA</b>
|
|
|
|
|
+ {{ $datiCintureSicurezza->conducente == 1 ? 'SI' : ($datiCintureSicurezza->conducente == 2 ? 'NO' : 'NON RILEVATO') }}
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ @endif
|
|
|
|
|
+
|
|
|
|
|
+ @if(isset($datiCasco->conducente))
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td width="40%" class="">
|
|
|
|
|
+ <b>USO CASCO</b>
|
|
|
|
|
+ {{ $datiCasco->conducente == 1 ? 'SI' : ($datiCasco->conducente == 2 ? 'NO' : 'NON RILEVATO') }}
|
|
|
|
|
+ </td>
|
|
|
|
|
+ @if($datiCasco->conducente)
|
|
|
|
|
+ <td width="60%" class="">
|
|
|
|
|
+ <b>CASCO OMOLOGAZIONE</b>
|
|
|
|
|
+ {{ $datiCascoOmologazione->conducente ?? '' }}
|
|
|
|
|
+ </td>
|
|
|
|
|
+ @endif
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ @endif
|
|
|
|
|
+
|
|
|
|
|
+ @if($datiVeicolo->alcool_test)
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td width="100%" class="">
|
|
|
|
|
+ <b>ALCOOL TEST</b>
|
|
|
|
|
+ {{ $datiVeicolo->alcool_test ? 'SI' : 'NO' }}
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td width="100%" class="">
|
|
|
|
|
+ <b>ALCOOL TEST ESITO</b>
|
|
|
|
|
+ {{ $datiVeicolo->alcool_test_esito == 1 ? 'Esito negativo' : 'Esito positivo' }}
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ @endif
|
|
|
|
|
+
|
|
|
|
|
+ @if($datiVeicolo->drug_test)
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td width="100%" class="">
|
|
|
|
|
+ <b>DRUG TEST</b>
|
|
|
|
|
+ {{ $datiVeicolo->drug_test ? 'SI' : 'NO' }}
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td width="100%" class="">
|
|
|
|
|
+ <b>DRUG TEST ESITO</b>
|
|
|
|
|
+ {{ $datiVeicolo->drug_test_esito == 1 ? 'Esito negativo' : 'Esito positivo' }}
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ @endif
|
|
|
|
|
+ </table>
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+</table>
|