BookStack/app/Image.php

25 lines
346 B
PHP
Raw Normal View History

2015-07-13 20:52:56 +00:00
<?php
namespace BookStack;
2015-07-13 20:52:56 +00:00
class Image extends Entity
2015-07-13 20:52:56 +00:00
{
2015-08-15 23:18:22 +00:00
protected $fillable = ['name'];
2015-07-14 21:34:31 +00:00
public function getFilePath()
{
return storage_path() . $this->url;
}
/**
* Get the url for this item.
* @return string
*/
public function getUrl()
{
return public_path() . $this->url;
}
2015-07-13 20:52:56 +00:00
}