How to retrieve empty json array by Eloquent?

Viewed 2258

I have table item which has a JSON column sku_purchase_price. There are some rows like that:

enter image description here

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?

2 Answers
Related