是否可以在Laravel中将条件应用于集合中,并将其结果放入另一个集合而不更改第一个集合?
例如:
$documenti = DB::table("RVW_DocumentiDettaglio")
->select("*")
->where("IDAzienda", "=", $request->session()->get("operatore.IDAzienda"))
->whereIn("CodiceStato", [Documento::E_DOC, Documento::W_DOC, Documento::OK_DOC])
->orderBy("IDDocumentoTestata", "asc");
// Ciclo le voci spesa
foreach ($voci_spesa as $voce_spesa) {
Log_Controller::debug("Documenti:" . $documenti->get());
if ($voce_spesa["Manuale"]) {
$dettaglio = $documenti->where("Descrizione", "like", "%" . $voce_spesa["Descrizione"] . "%");
} else {
$dettaglio = $documenti->where("Descrizione", "=", $voce_spesa["Descrizione"]);
}
Log_Controller::debug("Dettaglio:" . $dettaglio->get());
}
die;
使用$documenti
我获得第一个集合,在foreach中我应用where条件并将结果放到$dettaglio
集合中,但第一个集合($documenti
)也已更改。为什么?它就像共享对象
答案 0 :(得分:4)
您当然可以将where子句应用于Collections以及许多其他方法,包括过滤和映射。请参阅此处的文档:
$collection = Item::all();
$filtered = $collection->where('price', 100);
$filtered->all();