36 lines
No EOL
718 B
PHP
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 |