@foreach($pedidos as $p)
| {{$p->id}}
|
{{ $p->customer->name }}
|
{{ \Carbon\Carbon::parse($p->created_at)->format('d/m/Y H:i') }}
|
{{$p->numero_nfe > 0 ? $p->numero_nfe : '--'}}
|
{{number_format($p->total, 2, ',', '.')}}
|
{{number_format($p->discount, 2, ',', '.')}}
|
|
@endforeach