@extends('layout.padrao') @section('title', 'Transparency Monthly Invoicing') @section('content') @include('include.filtro_result') @if($errors->any())
@foreach($errors->all() as $error) {{ $error }}
@endforeach
@endif {{ Form::open(array('method' => 'GET', 'files'=>true, 'enctype'=>'multipart/form-data', 'route'=>'exportTransparencyReport')) }} {{ csrf_field() }}

Dates Parameters

{!! Form::label('startDate', 'From ', [ 'class' => 'w-100 control-label']) !!} {!! Form::date('startDate', old('startDate'),['class' => 'form-control ', 'min' => '2019-01-01', 'max' => '2080-01-01']) !!} *Fields Date Mandatory
{!! Form::label('finishtDate', 'To', [ 'class' => 'w-100 control-label']) !!} {!! Form::date('finishtDate', old('finishtDate'),['class' => 'form-control', 'min' => '2019-01-01', 'max' => '2080-01-01']) !!}

Additional Filter Options

{!! Form::label('hauling_id', 'Hauling', [ 'class' => 'w-100 control-label']) !!} {!! Form::select('hauling_id', $select['hauling'], old('hauling_id',null), ['class' => 'form-control']) !!}
{!! Form::label('conditionReport', 'Condition', [ 'class' => 'w-100 control-label']) !!} {!! Form::select('conditionReport', $select['conditionReport'], null, ['class' => 'form-control']) !!}
{!! Form::label('stuffingTerminal', 'Stuffing Terminal', [ 'class' => 'w-100 control-label']) !!} {!! Form::select('stuffingTerminal[]', $select['stuffingTerminal'], old('stuffingTerminal[]',null), ['class' => 'stuffingTerminal form-control','multiple'=>'multiple']) !!}
@include('reports.script') @endsection