model json laravel accessor to convert to array

Solutions on MaxInterview for model json laravel accessor to convert to array by the best coders in the world

showing results for - "model json laravel accessor to convert to array"
Luciana
11 Jun 2018
1public function getBalanceAttribute($value)
2{
3    return json_decode($value);
4}