I have following value stored in MySQL database 23456789123,45678
and when I'm getting this value using magic variable I'm getting 23456789123,457
as a value.
I have tried $cast
variable in Model:
protected $casts = [
'previous_value' => 'double(16,5)',
]
but that did not helped. Much appreciate on any help in this regards.