@extends('layouts.dashboard') @section('title', 'Relatório de Debitos dos Clientes') @section('title-dashboard') Relatório de Debitos dos Clientes @endsection @section('pg-home') @endsection @section('content') @parent
Relatório de Debitos dos Clientes
{!! Form::open(['route' => 'relatorio-debitos-clientesPdf', 'class' => 'horizontal-form', 'target'=>'_blank','files' => true]) !!}

Dados do Relatório

{!! Form::select('vencimento', array('TODOS VENC'=>'TODOS VENC','A VENCER'=>'A VENCER','VENCIDOS'=>'VENCIDOS','VENCIDOSA'=>'VENCIDOS A'), null, ['class' => 'form-control select2','onchange'=>'setQtdDias(this);','id' => 'vencimento']) !!} {!! $errors->first('vencimento', '

:message

') !!}
{!! Form::label('formas_pag', 'FORMAS PAG', ['class' => 'control-label']) !!} {!! $errors->first('forma_pagamento_id', '

:message

') !!}
{!! Form::select('contas', array('TODOS'=>'TODOS','PREMIUM'=>'PREMIUM'), null, ['class' => 'form-control select2','id' => 'contas']) !!} {!! $errors->first('contas', '

:message

') !!}
{!! Form::select('status', array('1'=>'Ativos','3'=>'Cancelados'), null, ['class' => 'form-control select2','id' => 'status']) !!} {!! $errors->first('status', '

:message

') !!}
{!! Form::label('empresa_id', trans('relatorios.empresa_id'), ['class' => 'control-label']) !!}
{!! Form::select('empresa_id', $empresas, null, ['class' => 'form-control select2','id' => 'empresa_id', 'placeholder' => 'TODAS AS EMPRESAS']) !!} {!! $errors->first('empresa_id', '

:message

') !!}
{!! Form::label('funcionario_id', trans('relatorios.funcionario_id'), ['class' => 'control-label']) !!}
{!! Form::select('funcionario_id', $funcionarios, null, ['class' => 'form-control select2','id' => 'funcionario_id', 'placeholder' => 'TODOS OS FUNCIONÁRIOS']) !!} {!! $errors->first('funcionario_id', '

:message

') !!}
{!! Form::label('cliente_id', trans('relatorios.cliente_id'), ['class' => 'control-label']) !!}
{!! Form::label('situacao', trans('relatorios.situacao'), ['class' => 'control-label']) !!}
{!! Form::select('situacao', array(''=>'TODOS','Aguardando'=>'A RECEBER','Recebido'=>'RECEBIDO'), null, ['class' => 'form-control select2','id' => 'situacao']) !!} {!! $errors->first('situacao', '

:message

') !!}
{!! Form::close() !!}
@endsection