<table class="table table-striped">
    <tr>
        <th>Titulo</th>
        <th>Distribuidora</th>
        <th>Duracion</th>
        <th>Genero</th>
        <th>Formato</th>
        <th></th>
    </tr>
    <?php foreach($peliculas as $pelicula): ?>
        <tr data-id="<?php echo e($pelicula->id); ?>">
            <td><?php echo e($pelicula->title); ?></td>
            <td><?php echo e($pelicula->company); ?></td>
            <td><?php echo e($pelicula->duration); ?></td>
            <td><?php echo e($pelicula->theme); ?></td>
            <td><?php echo e($pelicula->format); ?></td>
            <td>
                <a href="<?php echo e(route('peliculas.edit', $pelicula)); ?>">Editar</a>
                <a href="" class="btn-delete">Eliminar</a>
            </td>
        </tr>
    <?php endforeach; ?>
</table>