nasirukun

PlaceController.php

Oct 26th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public function cari(Request $request)
  2. {
  3. $input = $request->input('cari');
  4. $name = Place::where('category', 'LIKE', '%'.$input.'%')->get();
  5. return view('home', compact('name'));
  6. }
Add Comment
Please, Sign In to add comment