Skip to content

Instantly share code, notes, and snippets.

@iboved
Created November 25, 2020 15:35
Show Gist options
  • Save iboved/91babac092e987815d0ebe5599f448d5 to your computer and use it in GitHub Desktop.
Save iboved/91babac092e987815d0ebe5599f448d5 to your computer and use it in GitHub Desktop.
Cache partial
public function onRender()
{
$content = \Cache::rememberForever('menu-data-'.$this->alias, function() {
return $this->renderPartial('::default.htm', ['menuItems' => $this->menuItems()]);
});
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment