Cliente: {{ $garantia->cliente->razao_social }}
@if($garantia->produto)
Produto: {{ $garantia->produto->nome }}
@elseif($garantia->servico)
Serviço: {{ $garantia->servico->nome }}
@endif
Data da Venda: {{ $garantia->data_venda ? date('d/m/Y', strtotime($garantia->data_venda)) : '--' }}
Prazo de Garantia: {{ $garantia->prazo_garantia }} dias
@if($garantia->observacao)
| Observações |
| {{ $garantia->observacao }} |
@endif
@if($garantia->valor_reparo)
Valor de Reparo: R$ {{ __moeda($garantia->valor_reparo) }}
@endif