1 <?php namespace BookStack;
3 use Illuminate\Database\Eloquent\Model as EloquentModel;
5 class Model extends EloquentModel
9 * Provides public access to get the raw attribute value from the model.
10 * Used in areas where no mutations are required but performance is critical.
14 public function getRawAttribute($key)
16 return parent::getAttributeFromArray($key);