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

Dados do Relatório

{!! Form::label('user_id', trans('relatorios.user_id'), ['class' => 'control-label']) !!}
{!! $errors->first('user_id', '

:message

') !!}
{!! Form::label('tipo', trans('relatorios.tipo'), ['class' => 'control-label']) !!}
{!! Form::select('tipo', array("Todos"=>"TODOS","Normal"=>"NORMAL","Voucher"=>"VOUCHER"), null, ['class' => 'form-control select2','id' => 'tipo']) !!} {!! $errors->first('tipo', '

:message

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