BookStack\Page::revisions PHP Method

revisions() public method

Get the associated page revisions, ordered by created date.
public revisions ( ) : mixed
return mixed
    public function revisions()
    {
        return $this->hasMany(PageRevision::class)->where('type', '=', 'version')->orderBy('created_at', 'desc');
    }