@extends('layouts.app') @section('content') {{-- @dump($data) --}}
Reporte Listar Cobros Contratos
{{-- form open laravel collective --}}
{!! Form::open(['url'=>'reportes/reporte-cobros-new-export','method'=>'POST','autocomplete'=>'off','role'=>'search']) !!} {{-- form select to clientes laravel collective --}} {!! Form::select('cliente', [], null, [ 'id' => 'cliente', 'class' => 'form-control mb-2', 'style' => 'width: 100%;', 'placeholder' => 'Seleccionar', ]) !!}
{!! Form::text('contrato_codigo', null, ['class' =>'form-control my-2']) !!} {!! Form::select('contrato_forma_pago_id', $forma_pago, null, [ 'id' => 'contrato_forma_pago_id', 'class' => 'form-control mb-2', 'style' => 'width: 100%;', 'placeholder' => 'Seleccionar', ]) !!} {{-- form to date addons--}}
{!! Form::date('cobro_fecha_aplicacion_inicia', null, ['class' => 'form-control', 'placeholder'=>'Fecha Inicio']) !!} To {!! Form::date('cobro_fecha_aplicacion_fin', null, ['class' => 'form-control', 'placeholder'=>'Fecha Inicio']) !!}
{{-- form submit laravel collective --}} Limpiar filtros {!! Form::submit('Generar', ['class'=>'btn btn-primary mt-2']) !!} {!! Form::close() !!}
@endsection @section('script') @endsection