]> BookStack Code Mirror - bookstack/blob - app/Image.php
Integrated TinyMCE
[bookstack] / app / Image.php
1 <?php
2
3 namespace Oxbow;
4
5 use Illuminate\Database\Eloquent\Model;
6
7 class Image extends Model
8 {
9     public function getFilePath()
10     {
11         return storage_path() . $this->url;
12     }
13 }