Reputation: 312
Using:
The problem: If i store translation for an attribute like description as json for example
description in table stored as
{"ar": "السلام عليكم", "en": "Welcome"}
If i write
Table::search("Welcome")->get();
// return the previous record.
Table::search("welcome")->get();
// no result come back.
Upvotes: 1
Views: 261