toArray(), array_flip($this->simpleAttributes)); $array['url'] = $this->getUrl(); return $array; } public function book() { return $this->belongsTo('Oxbow\Book'); } public function chapter() { return $this->belongsTo('Oxbow\Chapter'); } public function hasChapter() { return $this->chapter()->count() > 0; } public function revisions() { return $this->hasMany('Oxbow\PageRevision')->orderBy('created_at', 'desc'); } public function getUrl() { return '/books/' . $this->book->slug . '/page/' . $this->slug; } public function getExcerpt($length = 100) { return strlen($this->text) > $length ? substr($this->text, 0, $length-3) . '...' : $this->text; } }