50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
require_once 'db/config.php';
|
|
require_once 'header.php';
|
|
|
|
$workers = [];
|
|
try {
|
|
$db = db();
|
|
$stmt = $db->query("SELECT id, full_name, ndis_worker_screening_number, first_aid_expiry FROM support_workers ORDER BY created_at DESC");
|
|
$workers = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
|
} catch (PDOException $e) {
|
|
echo '<div class="feedback error">Error: ' . $e->getMessage() . '</div>';
|
|
}
|
|
|
|
?>
|
|
|
|
<header>
|
|
<h1>Support Workers</h1>
|
|
<a href="add_worker.php" class="btn btn-primary">Add New Worker</a>
|
|
</header>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Screening Number</th>
|
|
<th>First Aid Expiry</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (empty($workers)): ?>
|
|
<tr>
|
|
<td colspan="4" style="text-align: center;">No support workers found.</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<?php foreach ($workers as $w): ?>
|
|
<tr>
|
|
<td><?php echo htmlspecialchars($w['full_name']); ?></td>
|
|
<td><?php echo htmlspecialchars($w['ndis_worker_screening_number']); ?></td>
|
|
<td><?php echo htmlspecialchars(date("d M Y", strtotime($w['first_aid_expiry']))); ?></td>
|
|
<td>
|
|
<a href="worker_detail.php?id=<?php echo $w['id']; ?>" class="btn">View</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php require_once 'footer.php'; ?>
|