2015-07-13 03:01:42 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Oxbow;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Page extends Model
|
|
|
|
{
|
2015-07-13 04:31:15 +08:00
|
|
|
protected $fillable = ['name', 'html', 'priority'];
|
|
|
|
|
2015-07-21 05:05:26 +08:00
|
|
|
protected $simpleAttributes = ['name', 'id', 'slug'];
|
|
|
|
|
|
|
|
public function toSimpleArray()
|
|
|
|
{
|
|
|
|
$array = array_intersect_key($this->toArray(), array_flip($this->simpleAttributes));
|
|
|
|
$array['url'] = $this->getUrl();
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
2015-07-13 04:31:15 +08:00
|
|
|
public function book()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Oxbow\Book');
|
|
|
|
}
|
|
|
|
|
2015-07-21 05:05:26 +08:00
|
|
|
public function parent()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Oxbow\Page', 'page_id');
|
|
|
|
}
|
|
|
|
|
2015-07-13 04:31:15 +08:00
|
|
|
public function getUrl()
|
|
|
|
{
|
2015-07-28 03:17:08 +08:00
|
|
|
return '/books/' . $this->book->slug . '/page/' . $this->slug;
|
2015-07-13 04:31:15 +08:00
|
|
|
}
|
2015-07-21 05:05:26 +08:00
|
|
|
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|