How can I use JSON Where Clauses on laravel mongodb? (Laravel 5.3)

Solution:

To select data from inside JSON, use a . instead of ->

Message::where('information.seller_id', 1)
       ->get();

Also, your data is currently a string, and you need it to be JSON. Just remove the quotes around it:

information : {"store_id":6,"some_other_data":"123", "seller_id":1}