控制器代碼(isn`t工作)Laravel模型,關係如何使用Eloquent進行innjoin查詢?
$employees = Employee::with('department')->get();
型號:部門
class Department extends Model
{
...
/**
* Defining Relationships.
*/
public function employee()
{
return $this->hasMany('GloboDeals\Employee');
}
}
型號:員工
class Employee extends Model
{
/**
* Defining Relationships.
*/
....
public function department()
{
return $this->belongsTo('GloboDeals\Department','departments_id','id');
}
外接IDS有table_id
名稱。
我搜索和搜索,沒有解決方案工作,所以我想我的代碼只是blehhh,如果任何人都可以檢查出來,並給我一個想法。
您正在尋找一個員工的部門或所有員工的部門? – Vuldo
什麼不行?你有錯誤嗎?你會得到意想不到的結果嗎?你會得到什麼結果?你期望的結果是什麼? –
你可以發表表格結構嗎? – clod986