Merge remote-tracking branch 'origin/staging' into origin/production

This commit is contained in:
Linksehat Staging Server
2024-01-25 13:24:50 +07:00
6 changed files with 127 additions and 24 deletions

View File

@@ -424,6 +424,36 @@
</tfoot>
</table>
<table class="claim-info-<?php echo now()->timestamp; ?>">
<thead>
<tr style="background-color: #F4F6F8;">
<td colspan="5" style="width: 5%; text-align: left;"><b>Diagnosis</b></td>
</tr>
</thead>
<tbody>
@php
if(count($dataDiagnosis))
{
foreach ($dataDiagnosis as $valDiagnosis)
{
@endphp
<tr>
<td colspan="5" style="width: 5%; text-align: left;">{{ !empty($valDiagnosis->name) ? ' - '.$valDiagnosis->name : '-'}}</td>
</tr>
@php
}
}
else
{
@endphp
<tr>
<td colspan="5" style="width: 5%; text-align: left;">-</td>
</tr>
@php
}
@endphp
</tbody>
</table>
<table class="claim-info-<?php echo now()->timestamp; ?>">
<thead>
<tr style="background-color: #F4F6F8;">
@@ -432,7 +462,7 @@
</thead>
<tbody>
<tr>
<td colspan="5" style="width: 5%; text-align: left;">{{ !empty($dataRequestLog->catatan) ? $dataRequestLog->catatan : ''}}</td>
<td colspan="5" style="width: 5%; text-align: left;">{{ !empty($dataRequestLog->catatan) ? $dataRequestLog->catatan : '-'}}</td>
</tr>
</tbody>
</table>