2015-07-13 21:52:56 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Oxbow;
|
|
|
|
|
|
|
|
|
2015-08-16 14:51:45 +01:00
|
|
|
class Image extends Entity
|
2015-07-13 21:52:56 +01:00
|
|
|
{
|
2015-08-16 00:18:22 +01:00
|
|
|
|
|
|
|
protected $fillable = ['name'];
|
|
|
|
|
2015-07-14 22:34:31 +01:00
|
|
|
public function getFilePath()
|
|
|
|
{
|
|
|
|
return storage_path() . $this->url;
|
|
|
|
}
|
2015-08-08 21:28:50 +01:00
|
|
|
|
2015-07-13 21:52:56 +01:00
|
|
|
}
|