3 namespace BookStack\App;
5 use Illuminate\Database\Eloquent\Model as EloquentModel;
7 class Model extends EloquentModel
10 * Provides public access to get the raw attribute value from the model.
11 * Used in areas where no mutations are required but performance is critical.
15 public function getRawAttribute(string $key)
17 return parent::getAttributeFromArray($key);