<div class="row">
<div class="col-md-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">Ligne accés</h3>
<div class="box-tools">
<a href="<?php echo site_url('ligneacce/add'); ?>" class="btn btn-success btn-sm">Ajouter</a>
</div>
</div>
<div class="box-body">
<table class="table table-striped" id="ligneacce">
<thead>
<tr>
<th>Utilisateur</th>
<th>Module</th>
<th>Action</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php foreach($ligneacces as $l){ ?>
<tr>
<td><?php echo $l['nom']." ".$l['prenom']; ?></td>
<td><?php echo $l['module']; ?></td>
<td><?php echo $l['name']; ?></td>
<td>
<a href="<?php echo site_url('ligneacce/remove/'.$l['idaccess']); ?>" class="btn btn-danger btn-xs"><span class="fa fa-trash"></span> Supprimer</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>