Vendas
{{-- Messagens da session --}} @include('partials.session-message')
@foreach($vendas as $venda) @endforeach
ID Empresa R. Social Tipo Valor CRIADO EM VENCIMENTO STATUS
{{ $venda->idnf }} {{ $venda->empresa->sigla }} {{ $venda->fornecedor->razaosocial ?? $venda->fornecedor->nome ?? '-' }} {{ $venda->prodservtipo->prodservtipo ?? '-' }} R$ {{ number_format($venda->totalnf, 2, ',', '.') }} {{ Carbon::parse($venda->dataemissao)->format('d/m/y') }} {{ Carbon::parse($venda->datavencimento)->format('d/m/y') }} @include('partials.status-progress', ['status' => $venda->status, 'id' => $venda->idnf, 'options' => [ ['percentage' => 50, 'status' => 'INATIVO', 'tooltip' => 'Inativo', 'class' => 'bg-danger'], ['percentage' => 50, 'status' => 'ATIVO', 'tooltip' => 'Ativo', 'class' => 'bg-info'], ['percentage' => 50, 'status' => 'CONCLUÍDO', 'tooltip' => 'Concluído', 'class' => 'bg-success'], ]]) edit
@csrf @method('delete')