Guest User

Untitled

a guest
Apr 25th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public function search(Request $request)
  2. {
  3. //get keyword from text input
  4. $keyword = $request->search;
  5. //get data from database based on keyword
  6. $data = ModelName::where( 'name', 'LIKE', '%'.$search.'%' )->paginate($paginateNumber);
  7. return view( 'path.to.view.name', compact('products', 'journals') );
  8. }
Add Comment
Please, Sign In to add comment