Combustíveis
@if(count($posto->combustiveis) > 0)
@foreach ($posto->combustiveis as $comb)
Produto

{{ strtoupper($comb->produto->artigo) }}

Número

{{ strtoupper($comb->num_tanque) }}

Capacidade

{{ number_format($comb->capacidade_tanque, 0, ',', ' ') }}

TARA

{{ number_format($comb->tara, 0, ',', ' ') }}

@if ($comb->sondagens_combustiveis()->latest()->first())
Sondagem Atual

{{ number_format($comb->sondagens_combustiveis()->latest()->first()->sondagem_final, 0, ',', '.') }} L

{{ date('d/m/Y - H:i:s', strtotime($comb->sondagens_combustiveis()->latest()->first()->data_sondagem)) }}

@endif
@endforeach
@else @endif