-
Notifications
You must be signed in to change notification settings - Fork 0
/
Transactions.php
56 lines (53 loc) · 1.7 KB
/
Transactions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
require_once('config/db.php');
require_once('lib/pdo_db.php');
require_once('models/Transaction.php');
// Instantiate Transaction
$transaction = new Transaction();
// Get Transaction
$transactions = $transaction->getTransactions();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>View Transactions</title>
</head>
<body>
<div class="container mt-4">
<div class="btn-group" role="group">
<a href="customers.php" class="btn btn-secondary">Customers</a>
<a href="transactions.php" class="btn btn-primary">Transactions</a>
</div>
<hr>
<h2>Transactions</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Transaction ID</th>
<th>Customer</th>
<th>Product</th>
<th>Amount</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<?php foreach($transactions as $t): ?>
<tr>
<td><?php echo $t->id; ?></td>
<td><?php echo $t->customer_id; ?></td>
<td><?php echo $t->product; ?></td>
<td><?php echo sprintf('%.2f', $t->amount / 100); ?> <?php echo strtoupper($t->currency); ?></td>
<td><?php echo $t->created_at; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<br>
<p><a href="index.php">Pay Page</a></p>
</div>
</body>
</html>