#Laravel Tip:
If you want to conditionally include relationships on your resource responses based on if the relationship has already been loaded on the model. You may use `whenLoaded` method to achieve that, in order to avoid unnecessarily loading relations.
Here is an example: