First Aid list, amount list and kitchen list PDF download implemented
This commit is contained in:
87
resources/views/pdfs/first-aid-list.blade.php
Normal file
87
resources/views/pdfs/first-aid-list.blade.php
Normal file
@@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
@page {
|
||||
margin: 15mm 10mm;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: DejaVu Sans, sans-serif;
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-bottom: 8mm;
|
||||
}
|
||||
|
||||
th, td {
|
||||
border: 1px solid #000;
|
||||
padding: 6px 8px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
td {
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
th {
|
||||
background: #f2f2f2;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.page-break {
|
||||
page-break-after: always;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@php
|
||||
$rows = $rows ?? [];
|
||||
$chunks = array_chunk($rows, 8);
|
||||
@endphp
|
||||
|
||||
@foreach($chunks as $chunk)
|
||||
<h1>Erste-Hilfe-Liste {{$event}}</h1>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width: 2cm;">Name, Alter</th>
|
||||
<th style="width: 2cm;">Stamm</th>
|
||||
<th style="width: 2.5cm;">Bade-Erlaubnis</th>
|
||||
<th style="width: 3.5cm;">Allergien /<br />Unvertr.</th>
|
||||
<th style="width: 3.5cm;">Medikamente</th>
|
||||
<th style="width: 3.5cm;">Notfallkontakt</th>
|
||||
<th style="width: 3.5cm;">Erw. Erste Hilfe/<br />Tetanus-Vac.</th>
|
||||
<th>Anmerkungen</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($chunk as $index => $row)
|
||||
<tr>
|
||||
<td>{{ $row['lastname']}},<br />{{ $row['firstname'] }}<br /> {{$row['age'] ?? ''}} Jahre</td>
|
||||
<td>{{ $row['localgroup'] ?? '' }}</td>
|
||||
<td>{{ $row['swimmingPermission'] ?? '' }}</td>
|
||||
<td>{{ $row['allergies'] ?? '' }}<br />{{$row['intolerances']}}</td>
|
||||
<td>{{ $row['medications'] ?? '' }}</td>
|
||||
<td>
|
||||
{{ $row['contact_person'] ?? 'P: ' . $row['firstname'] . ' ' . $row['lastname']}}<br />
|
||||
{{ $row['phone_2'] ?? '---' }}<br />
|
||||
{{ $row['phone_1'] ?? '---' }}
|
||||
|
||||
</td>
|
||||
<td>{{ $row['extendedFirstAid'] ?? '' }}<br />T: {{$row['tetanusVaccination'] ?? 'Unbekannt'}}</td>
|
||||
<td>{{ $row['notes'] ?? '' }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@if(! $loop->last)
|
||||
@endif
|
||||
@endforeach
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user