mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 11:04:17 +08:00
21 lines
346 B
PHP
21 lines
346 B
PHP
<?php
|
|
|
|
namespace Oxbow;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Page extends Model
|
|
{
|
|
protected $fillable = ['name', 'html', 'priority'];
|
|
|
|
public function book()
|
|
{
|
|
return $this->belongsTo('Oxbow\Book');
|
|
}
|
|
|
|
public function getUrl()
|
|
{
|
|
return '/books/' . $this->book->slug . '/' . $this->slug;
|
|
}
|
|
}
|