“Obtenha o valor sem o método do setter Laravel” Respostas de código

$ this- atributo Laravel

To define a mutator, define a setFooAttribute method on your model where Foo
  is the "studly" cased name of the column you wish to access. So, again,
lets define a mutator for the first_name attribute. This mutator will
be automatically called when we attempt to set the value of the first_name
attribute on the model:

class User extends Model
{
    public function setFirstNameAttribute($value)
    {
        $this->attributes['first_name'] = strtolower($value);
    }
}
Lokesh003

Obtenha o valor sem o método do setter Laravel

Methods you can try : 
1. $model->getAttributes()['name']; //worked for me
2. $model->getOriginal('name');
3. $this->attributes['name'];
Lokesh003

Respostas semelhantes a “Obtenha o valor sem o método do setter Laravel”

Perguntas semelhantes a “Obtenha o valor sem o método do setter Laravel”

Mais respostas relacionadas para “Obtenha o valor sem o método do setter Laravel” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código