Skip to content

Instantly share code, notes, and snippets.

@vasiliishvakin
Created August 7, 2016 05:18
Show Gist options
  • Save vasiliishvakin/c40c0e2d2d16af7f9ef1d81fd34e4861 to your computer and use it in GitHub Desktop.
Save vasiliishvakin/c40c0e2d2d16af7f9ef1d81fd34e4861 to your computer and use it in GitHub Desktop.
Get chail items
public function getImages()
{
if (null === $this->images) {
$command = new RelationLoadCommand(PageImageRelation::class, $this);
$this->images = $this->delegate($command);
}
return $this->images;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment