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

Dados do Relatório

{!! 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('grupo_patrimonio_id', 'Patrimônios', ['class' => 'control-label']) !!}
{!! Form::select('grupo_patrimonio_id', $grupos_patrimonios, null, ['class' => 'form-control select2','id' => 'grupo_patrimonio_id', 'placeholder' => 'TODOS OS GRUPOS']) !!} {!! $errors->first('grupo_patrimonio_id', '

:message

') !!}
{!! Form::label('setor_id', 'Setores', ['class' => 'control-label']) !!}
{!! Form::select('setor_id', $setores, null, ['class' => 'form-control select2','id' => 'setor_id', 'placeholder' => 'TODOS OS SETORES']) !!} {!! $errors->first('setor_id', '

:message

') !!}
{!! Form::label('patrimonio_id', 'Tipos de Patrimônios', ['class' => 'control-label']) !!}
{!! $errors->first('patrimonio_id', '

:message

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