1 <?php namespace BookStack;
5 class Image extends Ownable
8 protected $fillable = ['name'];
11 * Get a thumbnail for this image.
14 * @param bool|false $keepRatio
17 public function getThumb($width, $height, $keepRatio = false)
19 return Images::getThumbnail($this, $width, $height, $keepRatio);