]>
BookStack Code Mirror - bookstack/blob - app/Image.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Started working on chapters
[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
}