You need to redefine the afterFind function of the model class and write the code
$ this-> short_description = substr ($ this-> description, 0, 150);
in the afterFind function.
You need to do something like this
protected function afterFind()
{
parent::afterFind();
$this->short_description = substr($this->description, 0, 150);
}
sadaf source
share