majad.shohagh's avatar

Pagination for search results laravel 5.7

//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
0 likes
2 replies
Snapey's avatar

Probably change last where to orWhere

jlrdw's avatar

Don't forget to append your parameters either in the query string or as pretty URL.

You don't show the whole controller method hard to see what you are doing.

Please or to participate in this conversation.