Level 122
Probably change last where to orWhere
//It my query
$product = Product::where('naam', 'LIKE', '%' . $q . '%')
->orWhere('beschrijving', 'LIKE', '%' . $q . '%')
->where('contact', 'LIKE', '%' . $contact . '%')
->paginate(6);
// And I want to paginate like this parameter
Please or to participate in this conversation.