芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/rentandbuyrealty.com/app/Models/AssignParameters.php
morphTo(); } public function parameter() { return $this->belongsTo(parameter::class); } public function getValueAttribute($value) { if(!empty($value)){ if(json_validate($value)){ $a = json_decode($value, true); if ($a == NULL) { /** Was Getting Null in string that's why commented $value return code */ // return $value; return ""; } else { return $a; } }else{ return $value; } } return ""; } // public function getValueAttribute($value) // { // // Try to decode JSON strings // $decoded = json_decode($value, true); // if ($decoded !== null) { // return $decoded; // } // // Try to convert numeric strings to numbers // if (is_numeric($value)) { // if (strpos($value, '.') !== false) { // return floatval($value); // } else { // return intval($value); // } // } // // Otherwise return the original string // return $value; // } }