1 <?php namespace BookStack;
4 class File extends Ownable
6 protected $fillable = ['name', 'order'];
9 * Get the page this file was uploaded to.
12 public function page()
14 return $this->belongsTo(Page::class, 'uploaded_to');
18 * Get the url of this file.
21 public function getUrl()
23 return '/files/' . $this->id;