I have table item which has a JSON column sku_purchase_price. There are some rows like that:
I tried to retrieve those rows from DB by Eloquent:
$items = Item::where('sku_purchase_price', '[]')->get();
but it returns a collection with zero results.
So, how to retrieve those row from DB by Eloquent?
