Polymorphic Relations: Retrieving Polymorphic Relations

$post = App\Post::find(1);

foreach ($post->comments as $comment) {
    //
}
$comment = App\Comment::find(1);

$commentable = $comment->commentable;

Polymorphic Relations: Retrieving Polymorphic Relations — Structure map

Clickable & Draggable!

Polymorphic Relations: Retrieving Polymorphic Relations — Related pages: