@foreach($orcamentos as $v)
@if(!$v->status)
@endif
|
{{$v->id}}
|
{{ $v->cliente->razao_social ?? 'NAO IDENTIFCADO' }}
|
{{$v->usuario->nome}}
|
{{ number_format($v->valor_total, 2, ',', '.') }}
|
{{ number_format($v->desconto, 2, ',', '.') }}
|
{{ $v->estado }}
|
{{ \Carbon\Carbon::parse($v->created_at)->format('d/m/Y H:i:s')}}
|
{{ $v->forma_pagamento }}
|
{{ $v->tipo_pagamento }}
|
@if($v->estado == 'NOVO')
@endif
|
@endforeach