1 <?php namespace BookStack\Uploads;
6 class Image extends Ownable
9 protected $fillable = ['name'];
12 * Get a thumbnail for this image.
15 * @param bool|false $keepRatio
19 public function getThumb($width, $height, $keepRatio = false)
21 return Images::getThumbnail($this, $width, $height, $keepRatio);