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.
17 public function getRawAttribute($key)
19 return parent::getAttributeFromArray($key);