2016-07-01 282 views
0

我試圖得到查詢到模型的結果做這種方式雄辯laravel

$idDocumento = $_GET['idDocumento']; 
$compra = \App\Compra::All()->where('DocumentoImportacion_idDocumentoImportacion', "=", $idDocumento); 

但數據並沒有帶來我即使知道,通常產生MySQL查詢DAT,我不知道這是做

打印此

Illuminate\Support\Collection Object 
(
[items:protected] => Array 
    (

    ) 
) 

回答

0

變化的正確方法:$compra = \App\Compra::All()->where('DocumentoImportacion_idDocumentoImportacion', "=", $idDocumento);

收件人:

$compra = \App\Compra::where('DocumentoImportacion_idDocumentoImportacion', "=", $idDocumento)->get(); 
+0

Excelentet !!!! –