|
{{ $comb->produto->artigo }}
|
@if($comb->sondagens_combustiveis()->latest()->first())
{{ date('d/m', strtotime($comb->sondagens_combustiveis()->latest()->first()->data_sondagem)) }}
{{ date('H:i', strtotime($comb->sondagens_combustiveis()->latest()->first()->data_sondagem)) }}
@else
-
@endif
|
@if($comb->media_venda_inicial && $comb->data_proximo_reabastecimento)
@php
$classe = 'badge-light border text-muted';
if($comb->dias_proximo_reabastecimento <= $configCores->dias_vermelho) $classe = 'badge-danger';
elseif($comb->dias_proximo_reabastecimento <= $configCores->dias_amarelo) $classe = 'badge-warning text-white';
@endphp
{{ date('d/m', strtotime($comb->data_proximo_reabastecimento)) }}
@else
-
@endif
|
@if ($permissao->criar_agendamentos_pedidos)
@endif
|
@endforeach