BookStack/app/Page.php
2015-07-12 21:31:15 +01:00

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;
}
}