Skip to content

Commit c6c2a0a

Browse files
Update staff.php with new links and button labels
1 parent b8e2a6b commit c6c2a0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

functions/views/staff.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<td><img class="rounded-circle me-2" width="30" height="30" src="assets/img/profile.png"><?php echo $row['username']; ?></td>
1818
<td><?php echo $row['created_at']; ?></td>
1919
<td class="text-center">
20-
<a class="mx-1" href="profile-staff.php?id=<?php echo $row['id']?>" role="button"><i class="far fa-eye" style="font-size: 20px;"></i></a>
21-
<a class="mx-1" href="#" role="button" data-bs-target="#update" data-bs-toggle="modal" data-id="<?php echo $row['id']?>" data-username="<?php echo $row['username']?>"><i class="far fa-edit text-warning" style="font-size: 20px;"></i></a>
22-
<a class="mx-1" href="#" role="button" data-bs-target="#remove" data-bs-toggle="modal" data-id="<?php echo $row['id']?>"><i class="far fa-trash-alt text-danger" style="font-size: 20px;"></i></a>
20+
<a class="mx-1 text-decoration-none" href="profile-staff.php?id=<?php echo $row['id']?>" role="button"><i class="far fa-eye" style="font-size: 20px;"></i> View Transactions</a>
21+
<a class="mx-1 text-decoration-none text-warning" href="#" role="button" data-bs-target="#update" data-bs-toggle="modal" data-id="<?php echo $row['id']?>" data-username="<?php echo $row['username']?>"><i class="far fa-edit text-warning" style="font-size: 20px;"></i> Update</a>
22+
<a class="mx-1 text-decoration-none text-danger" href="#" role="button" data-bs-target="#remove" data-bs-toggle="modal" data-id="<?php echo $row['id']?>"><i class="far fa-trash-alt text-danger" style="font-size: 20px;"></i> Remove</a>
2323
</td>
2424

2525
<?php

0 commit comments

Comments
 (0)