5 use Illuminate\Database\Eloquent\Model;
7 class Page extends Model
9 protected $fillable = ['name', 'html', 'priority'];
11 public function book()
13 return $this->belongsTo('Oxbow\Book');
16 public function getUrl()
18 return '/books/' . $this->book->slug . '/' . $this->slug;