Defining Relationships: Retrieving The Relationship

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

foreach ($post->tags as $tag) {
    //
}
$tag = App\Tag::find(1);

foreach ($tag->videos as $video) {
    //
}

Defining Relationships: Retrieving The Relationship — Structure map

Clickable & Draggable!

Defining Relationships: Retrieving The Relationship — Related pages: