首先让我说我对Laravel非常陌生。 我有一个列表框项目的表格(下面是截断的迁移代码):
WARNING:WA caRcNhIeN Gi:s coaucth eo fi sd oautte :o fC :d/aUtsee:r sC/a:d/riaUns.ebresr/caodvriicain/.AbpeprDcatova/Lioccia/lA/pPprDoagtraa/mLso/csatla/cPkr/oxg8r6a_m6s4/-swtiancdko/wxs8/6g_h6c4--8w.i0n.d2o\wlsi/bg\hpca-c8k.a0g.e2.\cloinbf\.pda\cpkaacgkea.gceo.ncfa.cdh\ep
agchkca gwei.lcla csheee
gahnc owlidl lv iseewe oafn tohlids vpiaecwk aogfe tdhbi.s Upsaec k'agghec -dpbk.g Urseec a'cghhec'- ptkog friexc.a
che' to fix.
Error parsing targets: Directory not found: Data.Aeson
组用于“ TITLE”,“ SPECIALITIES”等。 我正在将user_title_li_id(在users表中)链接到该表的ID,以及 providers表中的provider_title_li_id,provider_speciality_li_id等
如何在用户模型和列表项模型中建立关系,以便获取控制器中每个模型的list_item(例如Professor)?
答案 0 :(得分:0)
在用户模型中,定义如下函数:
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
/**
* Get the list items for the user.
*/
public function listItems()
{
return $this->hasMany('App\ListItem', 'foreign_key', 'list_item');
}
}