This commit is contained in:
Suvodip
2025-02-28 20:07:48 +05:30
parent e56d4f72ab
commit c1ee1e0ba0
5 changed files with 263 additions and 186 deletions

View File

@@ -5,7 +5,7 @@
<h2 class="mb-3 text-center">Customer List</h2>
<div class="table-responsive">
<table class="table table-bordered table-striped table-hover">
<thead class="thead-dark">
<thead class="bg-primary text-white text-center">
<tr>
<th>Sl No</th>
<th>Name</th>
@@ -33,8 +33,8 @@
<td><?php echo htmlspecialchars($customer['email']); ?></td>
<td>
<a href="/customers/edit/?customerId=<?php echo $customer['customerId']; ?>" class="btn btn-primary btn-sm">Edit</a>
<a href="/customers/emi/?customerId=<?php echo $customer['customerId']; ?>" class="btn btn-primary btn-sm">Bill</a>
<a href="/customers/billing-details/?customerId=<?php echo $customer['customerId']; ?>" class="btn btn-primary btn-sm">Billing Info</a>
<a href="/customers/generate-invoice/?customerId=<?php echo $customer['customerId']; ?>" class="btn btn-primary btn-sm">Invoice</a>
<a href="/customers/billing-details/?customerId=<?php echo $customer['customerId']; ?>" class="btn btn-primary btn-sm">Installment Details</a>
</td>
</tr>
<?php