MySQLはJSON文字列を想定しています:
$leads->whereRaw('JSON_CONTAINS(user, ?)', [json_encode($users)])
Laravel 5.6.24では、whereJsonContains()
を使用できます :
$leads->whereJsonContains('user', $users)
MySQLはJSON文字列を想定しています:
$leads->whereRaw('JSON_CONTAINS(user, ?)', [json_encode($users)])
Laravel 5.6.24では、whereJsonContains()
を使用できます :
$leads->whereJsonContains('user', $users)