1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-24 11:52:34 +01:00
BookStack/app/Image.php

17 lines
186 B
PHP

<?php
namespace Oxbow;
class Image extends Entity
{
protected $fillable = ['name'];
public function getFilePath()
{
return storage_path() . $this->url;
}
}