I'm trying to write this code in laravel controller.
$messages = $db->query("
SELECT name, message
FROM messages
ORDER BY created ASC
LIMIT 100
");
header('Content-Type: application/json');
echo json_encode(
$messages->fetchAll(PDO::FETCH_OBJ)
);
but I can't write the ->fetchAll(PDO::FETCH_OBJ)