You can check with the following code as there may be some data value or data type matching issue with database column
$code = trim($code); // It will remove extra spaces
$code = (string) $code; // It will Ensure about string type value
LiveProducts::where('code', $code)->first();