ispt4.0_laravel/resources/views/testeRelatorio.blade.php
2025-03-12 12:02:15 +00:00

121 lines
2.5 KiB
PHP
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Documento Rotacionado</title>
<style>
body,
html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
/* Estilos da tabela */
table {
border-collapse: collapse;
width: 100%;
}
table,
th,
td {
border: 1px solid black;
}
th,
td {
padding: 5px;
text-align: left;
}
/*
.header{
display: flex;
border: 1px solid green;
}
.header-box:first-child{
height: 150px;
width: 150px;
border: 1px solid red;
margin-right: auto;
}
.header-box:last-child{
height: 150px;
width: 150px;
border: 1px solid red;
margin-left: auto;
}
.header-img{
height: 150px;
width: 150px;
} */
.header {
display: flex;
border: 1px solid green;
}
.header-box:first-child{
height: auto;
width: auto;
border: 1px solid red;
margin-right: auto;
}
.header-box:last-child{
height: auto;
width: auto;
border: 1px solid red;
margin-left: auto;
}
.header-img {
max-height: 100%;
max-width: 100%;
}
</style>
</head>
<body>
<div class="header">
<div class="header-box">
{{-- <img class="header-img" src="{{ public_path('/img/ispt.jpg') }}" alt="Logo Esquerdo"> --}}
</div>
<div class="header-box">
{{-- <img class="header-img" src="{{ $userLogoPath }}" alt="User Logo"> --}}
</div>
</div>
<table class="table">
<tr>
<th> ISPT</th>
<th>Unidade</th>
<th>Tag </th>
<th>Dim</th>
<th>#</th>
<th>Localizacao</th>
<th>PI&D</th>
<th>Ambito</th>
<th>Obsercoes</th>
<th>Andaime</th>
<th>Isolamento</th>
<th>Grua</th>
<th>Conclusao</th>
</tr>
</table>
</body>
</html>