Skip to content

Instantly share code, notes, and snippets.

@jonabaptistella
Forked from medienbaecker/section.php
Created April 10, 2019 12:44
Show Gist options
  • Select an option

  • Save jonabaptistella/67526397910a1ec45a4032e305d4f9e2 to your computer and use it in GitHub Desktop.

Select an option

Save jonabaptistella/67526397910a1ec45a4032e305d4f9e2 to your computer and use it in GitHub Desktop.
Page model for sections
<?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