<p>
<a href="index.php" class="btn btn-info btn-sm"><i class="glyphicon glyphicon-refresh"></i></a>
<a href="index.php?action=add" class="btn btn-info btn-sm">Tambah Data</a>
</p>
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<td>Title</td>
<td>Genre</td>
<td>Description</td>
<td>Action</td>
</tr>
</thead>
<tbody>
<?php foreach ($books as $key => $value) { ?>
<tr>
<td><?php echo $value->title; ?></td>
<td><?php echo $value->genre; ?></td>
<td><?php echo $value->description; ?></td>
<td>
<a class="btn btn-info btn-sm" title="edit" href="index.php?action=edit&id=<?php echo $value->id; ?>">Edit</a>
<a class="btn btn-danger btn-sm" title="delete" onclick="return confirm('Are you sure ?')" href="index.php?action=delete&id=<?php echo $value->id; ?>">Delete</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>