PostgreSQL yêu cầu giá trị đối tượng nằm bên trong một mảng:
PlanificacionInfo::select('datos_complementarios')
->whereJsonContains('datos_complementarios', [["value" => "Escamonda 2019"]]);
Sử dụng một biểu thức thô cho tìm kiếm không phân biệt chữ hoa chữ thường:
PlanificacionInfo::select('datos_complementarios')
->whereJsonContains(
DB::raw('lower("datos_complementarios"::text)'),
[["value" => strtolower("Escamonda 2019")]]
);