Bolt\Storage\Entity\ContentRouteTrait::isHome PHP Method

isHome() public method

Checks if the current record is set as the homepage.
public isHome ( ) : boolean
return boolean
    public function isHome()
    {
        $homepage = $this->app['config']->get('theme/homepage') ?: $this->app['config']->get('general/homepage');
        $uriID = $this->contenttype['singular_slug'] . '/' . $this->get('id');
        $uriSlug = $this->contenttype['singular_slug'] . '/' . $this->get('slug');
        return $uriID === $homepage || $uriSlug === $homepage;
    }