Advertisement
wansyahi1

function select2 dropdown (front end)

Dec 16th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public function ethnicity(Request $request)
  2. {
  3. $ethnicity = [];
  4.  
  5. if($request->has('q')){
  6. $search = $request->q;
  7. $ethnicity = DB::table("modified_dpprs")
  8. ->select("id","Bangsa_updated")
  9. ->where('Bangsa_updated','LIKE',"%$search%")
  10. ->get();
  11. }
  12. return response()->json($ethnicity);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement