@extends('layouts.master') @section('content') {{Form::open([ 'id' => 'filter-form', 'method' => 'GET', 'action' => 'AdminApiController@getFurnituresOrdersReport', 'target' => '_blank' ])}} {{Form::hidden('page',null,['id' => 'number_page'])}}
{{Form::label('gerencia','GERENCIA')}} {{Form::select('gerencia',array_merge(array(NULL => 'Seleccione una gerencia'),$gerencia),NUll,['class' => 'form-control'])}}
{{Form::label('category_id','CATEGORIA')}} {{Form::select('category_id',array_merge(array(NULL =>'Seleccione una Categoria'),FurnitureCategory::lists('name','id')),NUll,['class' => 'form-control'])}}
{{Form::label('since','DESDE')}} {{Form::text('since',\Carbon\Carbon::now('America/Mexico_City')->subMonths(1)->format('Y-m-d'), ['class' => 'form-control datepicker','id' => 'since' ])}}
{{Form::label('until','HASTA')}} {{Form::text('until',\Carbon\Carbon::now('America/Mexico_City')->addDay(1)->format('Y-m-d'), ['class' => 'form-control datepicker','id' => 'until' ])}}
{{Form::label('linea_negocio','LINEA DE NEGOCIO:')}} {{Form::select('linea_negocio',[NULL => 'Seleccione una linea de negocio']+$business_line,NUll,['class' => 'form-control'])}}
{{Form::label('divisional_id','DIVISIONAL')}} {{Form::select('divisional_id',[null => "Seleccione una divisional"] + $divisionals,null,['class' => 'form-control','placeholder' => 'Ingrese un ccosto','id' => 'ccosto'])}}
{{Form::label('report_type','Tipo de reporte')}} {{Form::select( 'report_type',[ '1' => 'Reporte people', '2' => 'Reporte mejorado', '3' => 'Reporte sistemas' ], NUll, [ 'class' => 'form-control' ] ) }}

{{Form::close()}}
@stop @section('script') @stop