This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function imprimirEstadoDeCuenta($id, $parametros_string = null) | |
{ | |
//------FILTROS | |
if ($parametros_string) | |
{ | |
$parametros_array = explode(',', $parametros_string); | |
$parametros = new \stdClass; | |
if (isset($parametros_array[0]) && $parametros_array[0]!='') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{-- filtros --}} | |
<div class="well well-sm form-inline text-center"> | |
<div class="form-group"> | |
<label>Desde</label> | |
<input type="text" class="form-control" id="filtro_fecha_desde"/> | |
</div> | |
<div class="form-group"> | |
<label> Hasta</label> | |
<input type="text" class="form-control" id="filtro_fecha_hasta"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if (isset($parametros->fecha_desde)) | |
<div class="col-xs-2"> | |
<dl> | |
<dt>Desde</dt> | |
<dd>{{ $parametros->fecha_desde }}</dd> | |
</dl> | |
</div> | |
@endif | |
@if (isset($parametros->fecha_hasta)) | |
<div class="col-xs-2"> |