| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <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:
- @if($data['record']->verificatosi_in_data && \Carbon\Carbon::parse($data['record']->verificatosi_in_data)->year > 0)
- {{ \Carbon\Carbon::parse($data['record']->verificatosi_in_data)->format('d/m/Y') }}
- @endif 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>
|