+ public function getUrl($path = null)
+ {
+ $url = $this->page->getUrl() . '/revisions/' . $this->id;
+ if ($path) {
+ return $url . '/' . trim($path, '/');
+ }
+ return $url;
+ }
+
+ /**
+ * Get the previous revision for the same page if existing
+ * @return \BookStack\PageRevision|null
+ */
+ public function getPrevious()