@extends('template') @section('content')
Faturas
@foreach($faturas as $fatura) @endforeach
Cliente Vendedor Dt Fatura Dt Vencimento Valor Serviços Vlr Consumo Desconto Vlr Total Ações
{{ $fatura->cliente }} {{ $fatura->vendedor }} {{ dateToBR($fatura->data_faturamento) }} {{ dateToBR($fatura->data_vencimento) }} {{ financialPrice($fatura->valor) }} {{ financialPrice($fatura->valor_consumo) }} {{ financialPrice($fatura->desconto) }} {{ financialPrice($fatura->valor_total) }} @if($fatura->tipo_venda =='pos_pago') @else @endif @if(!strlen($fatura->invoice_id)) @endif
@stop() @section('js-admin-did') @stop()