<table class="table table-striped">
    <tr>
        <th>Titulo</th>
        <th>Editorial</th>
        <th>Paginas</th>
        <th>Genero</th>
        <th>Formato</th>
        <th></th>
    </tr>
    <?php foreach($libros as $libro): ?>
        <tr data-id="<?php echo e($libro->id); ?>">
            <td><?php echo e($libro->title); ?></td>
            <td><?php echo e($libro->editorial); ?></td>
            <td><?php echo e($libro->pages); ?></td>
            <td><?php echo e($libro->theme); ?></td>
            <td><?php echo e($libro->format); ?></td>
            <td>
                <a href="<?php echo e(route('libros.edit', $libro)); ?>">Editar</a>
                <a href="" class="btn-delete">Eliminar</a>
            </td>
        </tr>
    <?php endforeach; ?>
</table>