-
Notifications
You must be signed in to change notification settings - Fork 0
/
conteudo-pdf.php
59 lines (53 loc) · 1.29 KB
/
conteudo-pdf.php
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
<?php
require "src/conexao-bd.php";
require "src/Modelo/Produto.php";
require "src/Repositorio/ProdutoRepositorio.php";
$produtoRepositorio = new ProdutoRepositorio($pdo);
$dados = $produtoRepositorio->findAll();
?>
<style>
table{
width: 90%;
margin: auto 0;
}
table, th, td{
border: 1px solid #000;
}
table th{
padding: 11px 0 11px;
font-weight: bold;
font-size: 18px;
text-align: left;
padding: 8px;
}
table tr{
border: 1px solid #000;
}
table td{
font-size: 18px;
padding: 8px;
}
.container-admin-banner h1{
margin-top: 40px;
font-size: 30px;
</style>
<table>
<thead>
<tr>
<th>Produto</th>
<th>Tipo</th>
<th>Descricão</th>
<th>Valor</th>
</tr>
</thead>
<tbody>
<?php foreach ($dados as $produto): ?>
<tr>
<td><?= $produto->getNome() ?></td>
<td><?= $produto->getTipo() ?></td>
<td><?= $produto->getDescricao() ?></td>
<td><?= $produto->getPrecoFormatado() ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>