Hello, I have a table with user login data, and this table is related to several other tables (FK). I'm making an API using Laravel, but a question has arisen. If I make a GET in the Login table using the user ID, which is best as good practice: 1. Make a relationship and when I give a GET in the Login table, using the user ID, I already see the data of all related tables. OR 2. A "GET", for each table that has the FK with the ID of the Login table, that way I would pass an ID on the request and each table would "query" individually. What I would like to do is to have an area with the data of these user tables, so that it could change, delete, read ... but as they are distributed in other tables, I do not know what is best practice or what is not so heavy.