Relátorio de Venda {{$data_inicial}}
#
TOTAL
@foreach($vendas as $key => $v) @foreach($v['itens'] as $i)
{{$i->quantidade}} x {{$i->produto->nome}} {{$i->produto->unidade_venda}} x {{number_format($i->valor, 2)}} = R$ {{number_format(($i->quantidade * $i->valor), 2)}}
@endforeach
Venda: {{$v['id']}} - {{$v['data']}}
{{number_format($v['total'], 2)}}
@endforeach
Total de vendas:
{{$inc}}
Valor Total:
R$ {{number_format($soma, 2)}}