1 <?php namespace BookStack\Entities;
3 use Illuminate\Database\Eloquent\Relations\BelongsTo;
7 * @property int $book_id
9 class BookChild extends Entity
13 * Get the book this page sits in.
16 public function book(): BelongsTo
18 return $this->belongsTo(Book::class);