clone
を使用できます クエリを複製してから、別のwhereステートメントで実行します。まず、from-to制約なしでクエリを作成してから、次のようにします。
$query1 = $this->data_qry;
$query2 = clone $query1;
$result1 = $query1->where('from', $from1)->where('to', $to1)->get();
$result2 = $query2->where('from', $from2)->where('to', $to2)->get();