I have a collection called saved for saved posts and this is related to the post and the post is also related to the creator of the post. how can i fetch the creator's username and imageUrl along with the saved post
TL;DR
Developers are looking to fetch the creator's username and imageUrl along with the saved post from related collections. To achieve this, you can use Eloquent Relationships in Laravel. You need to define the relationships between the saved posts, posts, and creators in your models and then eager load the necessary data using the with() method in your query.