Skip to content

Instantly share code, notes, and snippets.

@medienbaecker
Last active April 12, 2019 12:41
Show Gist options
  • Save medienbaecker/ad04b36aaf379d703174efe263bf5568 to your computer and use it in GitHub Desktop.
Save medienbaecker/ad04b36aaf379d703174efe263bf5568 to your computer and use it in GitHub Desktop.
Page model for sections
<?php
# site/models/section.php
class SectionPage extends Page {
public function url($options = null): string {
return $this->parents()->filterBy("intendedTemplate", "!=", "sections")->first()->url() . '#' . $this->slug();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment