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

27 lines
1.1 KiB
PHP
Executable File

<div class="header-container-loop-pages mb-5">
<!-- Logo -->
<!-- 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: 85px; max-height: 85px;">
<!-- 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: 90px; max-height: 90px;">
</div>
</div>
<!-- Relatório de Dados -->
<table class="info-table">
<tr>
<td> <b>Tag:</b> <span>{{ $detailsEquipment->equipment_tag ?? 'N/A' }}</span></td>
<td> <b>N. ISPT:</b> <span>{{ $detailsEquipmentWorkHistory->ispt_number ?? 'N/A' }}</span></td>
</tr>
<tr>
<td> <b>N. Obra:</b> <span>{{ $nObra ?? 'N/A' }}</span></td>
<td> <b>Âmbito:</b> <span>{{ $ambito ?? 'N/A' }}</span></td>
</tr>
</table>
</div>