mein-sterntours/resources/views/pdf/passolution.blade.php
Kevin Adametz 881fc84207 08 2024
2024-08-05 11:58:09 +02:00

36 lines
No EOL
718 B
PHP

@extends('pdf.layout-template2')
@section('content')
<style>
h1 {
font-size: 1rem;
}
h2 {
}
ul, ol {
padding-left: 2rem;
}
li {
padding-bottom: 0.5rem;
}
.pdf-input-content {
margin-bottom: 2rem;
}
.pdf-break-block {
/* page-break-inside: avoid; */
}
</style>
<h1>Einreise-, Visabestimmungen und gesundheitspolizeilichen Vorschriften</h1>
<hr>
@if($contents)
<div class="pdf-break-block">
<div class="pdf-input-content">
{!! nl2br($contents) !!}
</div>
</div>
@endif
@endsection