47 lines
2.0 KiB
PHP
47 lines
2.0 KiB
PHP
<div class="header-container-loop-pages">
|
|
<!-- 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: 70px; max-height: 70px;"> --}}
|
|
<img src="{{ public_path($projectLogoPath) }}" alt="Company Logo" class="img-fluid"
|
|
style="max-width: 85px; max-height: 85px;">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Relatório de Dados -->
|
|
{{-- <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> --}}
|
|
|
|
<!-- 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>
|