search

Home  >  Q&A  >  body text

The query database is displayed on the page. When you click on the second page, the data is not the data you want to query.

public function userlist(Request $request){
   $data=$request->param('hotel_name');
   if($data) {
       $map = $data;
       $user =new User_1Model();
       $list =$user->where('hotel_name','like',"%$map%")->paginate(5);
   }
   else {
       $list = User_1Model::paginate(5);
   }
   $count = User_1Model::count();
   $this->assign('list'

卢小强卢小强1898 days ago911

reply all(0)I'll reply

No reply
  • Cancelreply