File: /var/www/html/xfacil.desafio.com.py/resources/views/livewire/puntoshechos.blade.php
<div>
@if (isset($puntos))
<td style="color: #343333;">{{number_format($puntos->puntos, 0, '', '.')}}</td>
<td style="color: #343333;">{{number_format($puntos->puntos_extras, 0, '', '.')}}</td>
<td style="color: #343333;">{{number_format($puntos->puntos_extras+$puntos->puntos, 0, '', '.')}}</td>
</tr>
@if($puntos->comentario)
<tr>
<td colspan="7" style="text-align: left !important;"><b>Comentario: </b>{{ $puntos->comentario }}</td>
</tr>
@endif
@else
<td style="color: #343333;">0</td>
<td style="color: #343333;">0</td>
<td style="color: #343333;">0</td>
</tr>
@endif
</div>