def index(conn, _params) do products = Store.list_products() |> Shop.Repo.preload(:category) render(conn, "index.html", products: products) end