我製作了兩個表庫存和Inventory_images。 Inventory表的主鍵是inventory_images表的外鍵,現在我試圖獲取同一庫存的所有圖片但出現錯誤。 這裏是我的代碼不在laravel中工作的外鍵關係
庫存模型:
/**
* The table name that should be hidden from other modules
*/
protected $table = 'inventories';
protected $PrimaryKey = 'id';
public function test(){
return $this->belongsTo('App\InventoryImage', 'i_id');
}
InventoryImage型號:
protected $table = 'inventory_images';
protected $PrimaryKey = 'id';
public function inv_det(){
return $this->belongsTo('App\Inventory', 'id');
}
控制器:
$inventory = Inventory::with('test')->orderBy('id', 'DESC')->paginate('10');
dd($inventory);
能有人請幫我找出問題
有什麼錯誤? – Nima
調用模型[App \ Inventory]上的未定義關係[測試]。 這是錯誤 – Mohsin