@extends('layouts.master') @section('content') {{Form::open([ 'id' => 'filter-form', 'method' => 'GET', 'action' => 'AdminReportsController@getBcOrdersReport' ])}} {{Form::hidden('page',null,['id' => 'number_page'])}}
{{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')->format('Y-m-d'), ['class' => 'form-control datepicker','id' => 'until' ])}}
{{Form::label('type','TIPO DE TARJETAS')}} {{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('region_id','REGIÓN ')}} {{Form::select('region_id',[null => "Seleccione una región"]+$regions,null,['class' => 'form-control','placeholder' => 'Ingrese la región','id' => 'region_id' ])}}
{{Form::label('num_pedido','NUM_PEDIDO')}} {{Form::text('num_pedido',null,['class' => 'form-control','placeholder' => 'Ingrese el numero de pedido','id' => 'num_pedido' ])}}
{{Form::close()}}
@if(sizeof($bc_orders) < 1 )
No se encontraron reportes.
@else
@if($active_tab == 'atraccion_talento' || $active_tab == 'gerente_comercial') @endif @foreach($bc_orders as $bc_order) @if($active_tab =='atraccion_talento' || $active_tab == 'gerente_comercial') @endif @endforeach
NOMBRE FECHA_PEDIDO NUM_PEDIDO GERENCIA FECHA NOMBRE_PUESTO EMAIL TELEFONO CELULAR WEB DIRECCIÓN INMUEBLE DIRECCIÓN_ALTERNATIVA PUESTO_ATRACCION_GERENTE ESTATUS
{{$bc_order->NOMBRE}} {{$bc_order->FECHA_PEDIDO}} {{$bc_order->NUM_PEDIDO}} {{$bc_order->GERENCIA}} {{$bc_order->FECHA}} {{$bc_order->NOMBRE_PUESTO}} {{$bc_order->ORDER_EMAIL ? $bc_order->ORDER_EMAIL : $bc_order->EMAIL}} {{$bc_order->ORDER_TELEFONO ? $bc_order->ORDER_TELEFONO : $bc_order->TELEFONO}} {{$bc_order->ORDER_CELULAR ? $bc_order->ORDER_CELULAR : $bc_order->CELULAR}} {{$bc_order->WEB}} {{$bc_order->ORDER_DIRECCION ? $bc_order->ORDER_DIRECCION : $bc_order->DIRECCION}} {{$bc_order->INMUEBLE}} {{$bc_order->ORDER_DIRECCION_ALTERNATIVA ? $bc_order->ORDER_DIRECCION_ALTERNATIVA : $bc_order->DIRECCION_ALTERNATIVA}} {{$bc_order->PUESTO_ATRACCION_GERENTE}} {{$bc_order->ESTATUS}}
{{$bc_orders->appends(Input::except('page'))->links()}}
@endif
@stop @section('script') @endsection