BookStack/app/Book.php

41 lines
718 B
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
namespace Oxbow;
use Illuminate\Database\Eloquent\Model;
class Book extends Model
{
protected $fillable = ['name', 'description'];
public function getUrl()
{
return '/books/' . $this->slug;
}
public function getEditUrl()
{
return $this->getUrl() . '/edit';
}
2015-07-12 20:31:15 +00:00
public function pages()
{
return $this->hasMany('Oxbow\Page');
}
2015-07-27 19:17:08 +00:00
public function chapters()
{
return $this->hasMany('Oxbow\Chapter');
}
public function children()
{
$pages = $this->pages()->get();
$chapters = $this->chapters()->get();
$children = $pages->merge($chapters);
return $children->sortBy('priority');
}
2015-07-12 19:01:42 +00:00
}