-
-
Save jonabaptistella/67526397910a1ec45a4032e305d4f9e2 to your computer and use it in GitHub Desktop.
Page model for sections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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