Ich gehe alle Kommentare des Autors eines bestimmten Beitrags durch.
foreach($post->user->comments as $comment)
{
echo "<li>" . $comment->title . " (" . $comment->post->id . ")</li>";
}
Das gibt mir
I love this post (3)
This is a comment (5)
This is the second Comment (3)
Wie würde ich mit der post_id bestellen, damit die obige Liste als 3,3,5 bestellt wird