mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 20:19:12 +08:00
27 lines
436 B
PHP
27 lines
436 B
PHP
<?php
|
|
|
|
namespace Oxbow;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Image extends Model
|
|
{
|
|
|
|
protected $fillable = ['name'];
|
|
|
|
public function getFilePath()
|
|
{
|
|
return storage_path() . $this->url;
|
|
}
|
|
|
|
public function createdBy()
|
|
{
|
|
return $this->belongsTo('Oxbow\User', 'created_by');
|
|
}
|
|
|
|
public function updatedBy()
|
|
{
|
|
return $this->belongsTo('Oxbow\User', 'updated_by');
|
|
}
|
|
}
|