Hi, when I try put custom property to activity not working.
Example:
$lastActivity = Activity::all()->last();
//now $lastActivity->properties ={"attributes":{"name":"name","email":"[email protected]"}}
$lastActivity->properties->put('ip', '127.0.0.1');
//now $lastActivity->properties = {"attributes": "name":"name","email":"[email protected]"}}
The method "put" doesn't update the properties :-(
Thanks!
I think this is an Eloquent thing. Does it work if you reassign properties?
$lastActivity = Activity::all()->last();
$lastActivity->properties = $lastActivity->properties->put('ip', '127.0.0.1');
Oh, yes! Thank you very much! :+1:
Most helpful comment
I think this is an Eloquent thing. Does it work if you reassign
properties?