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

Dados do Relatório

{!! 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('forma_pagamento_id', 'FORMA DE PAGAMENTO', ['class' => 'control-label']) !!} {!! $errors->first('forma_pagamento_id', '

:message

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