@extends('layouts.app') @section('content') {{-- @dump($data) --}}
Reporte Estado de Cuenta x Servicio
{{-- form open laravel collective --}}
{{-- {!! Form::open(['url'=>'reportes/reporte-contratos-clientes','method'=>'POST','autocomplete'=>'off','role'=>'search']) !!} --}} {!! Form::open(['url'=>'reportes/servicios_estado_cuenta_export','method'=>'POST','autocomplete'=>'off','role'=>'search', 'name' => 'frmFiltros']) !!} {{-- form select to clientes laravel collective --}} {!! Form::select('cliente', [], null, [ 'id' => 'cliente', 'class' => 'form-control mb-4 mt-4', 'style' => 'width: 100%;', 'placeholder' => 'Seleccionar', ]) !!} {!! Form::select('contrato',[], null, [ 'id' => 'contrato', 'class' => 'form-control mb-4 mt-4', 'style' => 'width: 100%;', 'placeholder' => 'Seleccionar', 'disabled' => true ]) !!} {!! Form::select('servicio',[], null, [ 'id' => 'servicio', 'class' => 'form-control mb-4 mt-4', 'style' => 'width: 100%;', 'placeholder' => 'Seleccionar', 'disabled' => true ]) !!} {{-- form submit laravel collective --}} Limpiar filtros {!! Form::submit('Generar', ['class'=>'btn btn-primary mt-2', 'id' => 'btnGenerar']) !!} {!! Form::close() !!}
@endsection @section('script') @endsection