Код: Выделить всё
// In Model Class 1.
public function getUsername()
{
return $this->username;
}
// OR 2.
public function getUsername()
{
return $this->attributes['username'];
}
или просто вызвать атрибут при необходимости:
Код: Выделить всё
// 3.
$user->username;
Подробнее здесь: https://stackoverflow.com/questions/626 ... -attribute
Мобильная версия