mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-21 04:45:52 +08:00
23 lines
318 B
PHP
23 lines
318 B
PHP
![]() |
<?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';
|
||
|
}
|
||
|
|
||
|
}
|