I am storing destinations field as json type in mysql
destinations
json
mysql
example column value [\"Goa\", \"Moonar\", \"Kochi\"]
[\"Goa\", \"Moonar\", \"Kochi\"]
I
In Laravel 5.6 and higher you can use whereJsonContains method:
Package::whereJsonContains('destinations',["Goa"])->get();
But not all DB support it: https://laravel.com/docs/5.6/queries#json-where-clauses