79544690

Date: 2025-03-30 14:05:00
Score: 1
Natty:
Report link

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();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jaydeep chauhan