použité whereJsonContains Metoda zde
hodnota takto, pak udělejte takto ["1","2","3"]
$cards = Card::query()
->whereJsonContains('colors', '1')
->get();
if value like that [1,2,3] then used like that
$cards = Card::query()
->whereJsonContains('colors', 1)
->get();