<?php
if (!$user->isAuth()) {
redirect('/');
exit;
}
$potion = $db->prepare('select * from `potion` order by id');
$potion -> execute();
$potion = $potion -> fetchAll();
echo $template->render('game.constantino', ['potion' => $potion]);