在查詢中的函數的變量我有這樣的事情:需要在Laravel
$configurations = Configs:all();
foreach($configs as $config){
$documents = document::whereHas('user', function ($q) {
$q->where("portal_id", $config->id),})->get()
...
}
因爲$config
沒有查詢功能定義這不起作用。
如何將$config->id
對象放在那裏?
爲什麼你不在閉包裏面定義'$ configurations'?只是好奇 –