| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <table class="table-content" width="100%">
- <tr>
- <td valign="top" align="center">
- <h1>COMUNE DI FRASCATI</h1>
- <h2>CORPO DI POLIZIA LOCALE</h2>
- <h3>UFFICIO POLIZIA STRADALE E INFORTUNISTICA</h3>
- <h3>
- VIA ANGELO CELLI 23A1 – 00044 FRASCATI<br>
- TEL. 06.9416491 – FAX 06.94010040<br>
- PEC: polizialocalefrascati@legalmail.it
- </h3>
- <img src="{{ public_path() }}/images/logo_pdf.png" width="250">
- <h2>RAPPORTO</h2>
- <p>
- <h3>
- <b>
- RAPPORTO TECNICO DESCRITTIVO DELL'INCIDENTE STRADALE<br>
- VERIFICATOSI IN DATA
- {{ $data['record']->verificatosi_in_data ? \Carbon\Carbon::parse($data['record']->verificatosi_in_data)->format('d/m/Y') : '' }}
- ALLE ORE
- {{ $data['record']->verificatosi_in_data_ora }}:{{ $data['record']->verificatosi_in_data_minuti }}<br>
- IN
- @if ($data['record']->localita)
- {{ optional($data['record']->localita)->title }}
- @endif
- <br>
- @if ($data['record']->indirizzo)
- {{ optional($data['record']->indirizzo)->TOPONIMO }}
- {{ optional($data['record']->indirizzo)->DESCRIZIONE }}<br>
- @endif
- IN PROSSIMITA' DEL CIVICO: {{ $data['record']->prossimita_civico }}<br>
- @php
- $incidentTypes = [];
- if ($data['record']->incidente_con_danni_a_cose) {
- $incidentTypes[] = 'DANNI A COSE';
- }
- if ($data['record']->incidente_con_feriti) {
- $incidentTypes[] = 'FERITI';
- }
- if ($data['record']->incidente_con_feriti_lesioni_lievi) {
- $incidentTypes[] = 'FERITI LESIONI LIEVI';
- }
- if ($data['record']->incidente_con_feriti_lesioni_gravi) {
- $incidentTypes[] = 'FERITI LESIONI GRAVI';
- }
- if ($data['record']->incidente_mortale) {
- $incidentTypes[] = 'MORTALE';
- }
- @endphp
- @if (!empty($incidentTypes))
- INCIDENTE CON: {{ implode(', ', $incidentTypes) }}<br>
- @endif
- </b>
- </h3>
- </p>
- </td>
- </tr>
- </table>
|