[Laravel8.16.0] 複数カラムで部分一致を検索する

$products = DB::table('products')->where('name', 'like', '%'.$query.'%')->orWhere('amount', 'like', '%'.$query.'%')->Paginate(4);

単純にorWhereを繋げるだけです。

OK, スッキリした。