Title here
Summary here
Wire the catalog to SQLite so Ada sees real rows.
table('products')->all()products table existsprotected function listAction(Arrayable $data): ApiResponse
{
$products = table('products')->all();
return response(0, 'OK', ['products' => $products]);
}curl -s -X POST http://127.0.0.1:8000/api/v1/ \
-H "Content-Type: application/json" \
-d '{"service":"product","action":"list"}'If you seeded in Step 5, you should see the mug and sticker pack. More query patterns: Making queries.
migrate if the SQLite file was deleted