Created
October 5, 2016 15:59
-
-
Save jerearaujo03/218553268fa9735c25184cf0c8aa5356 to your computer and use it in GitHub Desktop.
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"> | |
<dl> | |
<dt>Hasta</dt> | |
<dd>{{ $parametros->fecha_hasta }}</dd> | |
</dl> | |
</div> | |
@endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment