7 lines
284 B
PHP
7 lines
284 B
PHP
<?php
|
|
require_once __DIR__ . '/../config/config.php';
|
|
$db = Database::getInstance();
|
|
$rows = $db->fetchAll('SELECT id, created_at, request_body FROM webhook_logs ORDER BY created_at DESC LIMIT 5');
|
|
header('Content-Type: application/json');
|
|
echo json_encode($rows, JSON_PRETTY_PRINT);
|