2015-07-12 15:01:42 -04: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 16:31:15 -04:00
|
|
|
public function pages()
|
|
|
|
{
|
|
|
|
return $this->hasMany('Oxbow\Page');
|
|
|
|
}
|
|
|
|
|
2015-07-27 15:17:08 -04:00
|
|
|
public function chapters()
|
|
|
|
{
|
|
|
|
return $this->hasMany('Oxbow\Chapter');
|
|
|
|
}
|
|
|
|
|
2015-08-08 16:28:50 -04:00
|
|
|
public function createdBy()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Oxbow\User', 'created_by');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function updatedBy()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Oxbow\User', 'updated_by');
|
|
|
|
}
|
|
|
|
|
2015-07-27 15:17:08 -04:00
|
|
|
public function children()
|
|
|
|
{
|
2015-07-30 17:27:35 -04:00
|
|
|
$pages = $this->pages()->where('chapter_id', '=', 0)->get();
|
2015-07-27 15:17:08 -04:00
|
|
|
$chapters = $this->chapters()->get();
|
2015-07-30 18:18:48 -04:00
|
|
|
foreach($chapters as $chapter) {
|
|
|
|
$pages->push($chapter);
|
|
|
|
}
|
|
|
|
return $pages->sortBy('priority');
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|