2015-08-09 07:06:52 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack;
|
2015-08-09 07:06:52 -04:00
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class PageRevision extends Model
|
|
|
|
{
|
|
|
|
protected $fillable = ['name', 'html', 'text'];
|
|
|
|
|
|
|
|
public function createdBy()
|
|
|
|
{
|
2015-09-10 14:31:09 -04:00
|
|
|
return $this->belongsTo('BookStack\User', 'created_by');
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function page()
|
|
|
|
{
|
2015-09-10 14:31:09 -04:00
|
|
|
return $this->belongsTo('BookStack\Page');
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getUrl()
|
|
|
|
{
|
|
|
|
return $this->page->getUrl() . '/revisions/' . $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|