@extends('template') @section('content')
Conferência de Faturas
Filtros
{!! Form::open(['route' => $action->route, 'method' => $action->method]) !!}
{!! Form::text('name', '', ['class' => 'form-control', 'placeholder' => '', 'autocomplete' => 'off']) !!} {!! Form::label('', 'Nome:') !!}
{!! Form::select('tipo', ['' => '', 'prepago' => 'Pré Pago', 'pospago' => 'Pós Pago'], '',['class'=>'form-control']) !!} {!! Form::label('', 'Tipo de Conta:') !!}
{!! Form::text('dt_ger_ini', '', ['class' => 'form-control', 'placeholder' => '', 'autocomplete' => 'off', 'id' => 'dt_ger_ini']) !!} {!! Form::label('', 'Data Inicial') !!}
{!! Form::text('dt_ger_fim', '', ['class' => 'form-control', 'autocomplete' => 'off', 'id' => 'dt_ger_fim']) !!} {!! Form::label('', 'Data Final') !!}
{!! Form::label('', ' ') !!}

{!! Form::close() !!}
{{--
Faturas Pagas: {{ $vlrTotal->paid }} Faturas Vencidas: {{ $vlrTotal->vencido }} Faturas Pendentes: {{ $vlrTotal->pending }}
--}} @if(count($invoices)>0) @foreach($invoices as $fatura) @foreach($fatura->itens as $tipo => $itens) @if($tipo == 'servicos' or $tipo == 'produtos') @if(strlen($tipo)>0) @foreach($itens as $item) @endforeach @endif @endif @if($tipo == 'consumo') @if(is_array($itens)) @else @if($itens > 0) @endif @endif @endif @endforeach @endforeach @else @endif
# Cliente Vendedor Tipo Dt. Ger. Dt. Venc. Valor Ações Disponíveis
{!! $fatura->id !!} {!! $fatura->nome !!} @if($fatura->customerUnlimited) Conta Voip Ilimitada @endif @if(is_null($fatura->vendedor)) Venda Online @else {!! $fatura->vendedor !!} @endif {!! $fatura->type_account !!} {!! dateToBR($fatura->created_at) !!} {!! dateToBR($fatura->data_vencimento) !!} {!! financialPrice($fatura->valor) !!} @if(routeAcess('admin.customers.acounts')) @endif @if(routeAcess('admin.customers.logged')) @endif @if(routeAcess('admin.customers.historico')) @endif @if(routeAcess('admin.reports.financial')) @endif

Nenhum registro encontrado.

{!! $invoices->appends($data)->render() !!}
@stop() @section('js-admin-financial') @stop()