<?php if(count($procedimientos)): ?>
  <a class="list-group-item">
    <p class="list-group-item-heading">Lista de Procedimientos</p>
    <div class="row formulario-horizontal">
      <div class="col-xs-12">
        <table class="table table-striped table-bordered table-hover table-condensed">
          <thead>
            <tr>
              <th>Código</th>
              <th>Nombre del procedimiento</th>
              <th>Cantidad</th>
              <th>Posología</th>
            </tr>
          </thead>

          <tbody>
            <?php foreach($procedimientos as $procedimiento): ?>
              <tr>
                <td><?php echo e($procedimiento->cups); ?></td>
                <td><?php echo e($procedimiento->nombre); ?></td>
                <td><?php echo e($procedimiento->cantidad); ?></td>
                <td><?php echo e($procedimiento->observaciones); ?></td>
              </tr>            
            <?php endforeach; ?>
          </tbody>
        </table>
      </div>
    </div>
  </a>
<?php endif; ?>

