Question about client and server side data handling
So for my SaaS i have a big table (currently in postgressql) with products as entities if I tell this correct. So right now i have a test Table with the same format as my actual table but then with just test data in it. What I want is a page where the user/client sees all products and their data in a nice designed way. What is the best way of doing this? Before i thought i should deploy an API that connects to the db and then using this API i would dynamically fetch the data to create elements.
I know that the boilerplate allows the actions/queries to get this data, but is this a good way for my application?
I know that the boilerplate allows the actions/queries to get this data, but is this a good way for my application?