5 use Illuminate\Database\Eloquent\Model;
7 class Image extends Model
9 public function getFilePath()
11 return storage_path() . $this->url;
14 public function createdBy()
16 return $this->belongsTo('Oxbow\User', 'created_by');
19 public function updatedBy()
21 return $this->belongsTo('Oxbow\User', 'updated_by');