Laravel ukrywa atrybuty JSON
//Add the field into $hidden attribute of your Model
class MyModel extends Model
{
protected $hidden = ['hidden_field_name'];
}
Tássio Auad
//Add the field into $hidden attribute of your Model
class MyModel extends Model
{
protected $hidden = ['hidden_field_name'];
}