BookStack/app/Image.php

14 lines
186 B
PHP
Raw Normal View History

2015-07-13 21:52:56 +01:00
<?php
namespace Oxbow;
use Illuminate\Database\Eloquent\Model;
class Image extends Model
{
2015-07-14 22:34:31 +01:00
public function getFilePath()
{
return storage_path() . $this->url;
}
2015-07-13 21:52:56 +01:00
}