]> BookStack Code Mirror - bookstack/blob - app/Image.php
Updated views for permissions and added notifications. Fixes #2 and #7
[bookstack] / app / Image.php
1 <?php
2
3 namespace Oxbow;
4
5
6 class Image extends Entity
7 {
8
9     protected $fillable = ['name'];
10
11     public function getFilePath()
12     {
13         return storage_path() . $this->url;
14     }
15
16 }