1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<body style="width: 210mm; display: flex; flex-direction: column; max-width: 190mm">
<header style="display: flex; flex-direction: column; padding: 3mm 4mm 0mm 4mm">
<div style="width: 300px; margin: auto">
<img style="width: 300px; height: max-content" src="{{public_path('images\estado_pe_logo.png')}}" alt="Logo Pernambuco">
</div>
<div style="display: flex; flex-direction: column">
<p style="margin: 1.1mm"><span>Autor do PAD: {{$data['user']['nome']}}</span></p>
<p style="margin: 1.1mm"><span>E-mail do Autor: {{$data['user']['email']}}</span></p>
<p style="margin: 1.1mm"><span>PDF gerado em: {{$data['date']}}</span></p>
</div>
</header>
<div style="display: flex; flex-direction: column; padding-left:5mm; gap: 10mm">
<h1 style="font-size: 16px; font-weight: bold; text-align: center">
ANEXO B
</h1>
@foreach ($data['anexo'] as $nome=>$valor)
<h4 style="font-size: 12px; font-weight: normal; padding-bottom: 5px">
<b>{{$nome}}</b>: {{$valor}}
</h4>
@endforeach
<hr>
@foreach ($data['model'] as $nome_dimensao=>$dimensao)
<h1 style="font-size: 16px; font-weight: bold">
{{$nome_dimensao}}
</h1>
@foreach ($dimensao as $nome_categoria=>$categoria)
<h4 style="font-size: 14px">
{{$nome_categoria}}
</h4>
<ul style="font-size: 14px">
@foreach ($categoria as $nome_tarefa=>$tarefa)
<li style="font-weight: bold">
{{$nome_tarefa}}
</li>
<ul style="font-size: 13px">
@foreach ($tarefa as $nome_valor=>$valor)
<li>
{{$nome_valor}}: {{$valor}}
</li>
@endforeach
</ul>
@endforeach
</ul>
<div style="height: 6mm"></div>
<div style="height: 4.5mm"></div>
@endforeach
<ul style="font-size: 14px; list-style-type: square">
<li>TOTAL DE HORAS: {{ $data['horas'][$nome_dimensao] }}</li>
</ul>
</div>
@endforeach
</div>
<footer style="padding-top: 4mm; margin-top: 4mm; border-top: 1px solid #000; text-align: center;">
<u>
Copyright ©2023. Universidade de Pernambuco - Todos os direitos reservados
</u>
</footer>
</body>