38 lines
1.6 KiB
PHP
38 lines
1.6 KiB
PHP
<div class="container">
|
|
<!-- Logo -->
|
|
<div class="row" style="height: 70px; margin-bottom: 15px;">
|
|
<!-- Imagem no extremo esquerdo -->
|
|
<div class="col d-flex justify-content-start align-items-center" style="height: 100%;">
|
|
<img src="{{ public_path($projectLogoPath) }}" alt="Project Logo" class="img-fluid"
|
|
style="max-width: 70px; max-height: 70px;">
|
|
</div>
|
|
<!-- Imagem no extremo direito -->
|
|
<div class="col d-flex justify-content-end align-items-center" style="height: 100%;">
|
|
<img src="{{ public_path($companyLogoPath) }}" alt="Company Logo" class="img-fluid"
|
|
style="max-width: 70px; max-height: 70px;">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Relatório de Dados -->
|
|
<div class="row" style="margin-left: 2px;">
|
|
<div class="row">
|
|
<div class="col-sm">
|
|
<p class="mb-0" style="border-style: double;"><strong>Tag:</strong> {{ $tag ?? 'N/A' }}</p>
|
|
</div>
|
|
<div class="col-sm">
|
|
<p class="mb-0" style="border-style: double;"><strong>Número Panini:</strong>
|
|
{{ $numeroPanini ?? 'N/A' }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-sm">
|
|
<p class="mb-0" style="border-style: double;"><strong>N. Obra:</strong> {{ $nObra ?? 'N/A' }}</p>
|
|
</div>
|
|
<div class="col-sm">
|
|
<p class="mb-0" style="border-style: double;"><strong>Âmbito:</strong> {{ $ambito ?? 'N/A' }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|