I want to store it in single field
And when i search for single item it will find it out from that field
答案 0 :(得分:0)
您可以将其存储为json或数组。
像这样
["nursery", "U.K.G.(Upper Kinder Garten)", "STD Two"]
在get
查询中,可以通过在查询中使用LIKE
来获取它们。
return Model::where('your_column_name', 'LIKE', '%" . $request->value . "%')->get();