0
我正在做的是添加一個關係到我的數據透視表。我有一個獨特的場景,我的數據透視表需要在角色表上擁有它自己的has_one關係。有沒有人看到創建專用於數據透視表的Eloquent模型的問題?另外,如果我要創建這個模型,有什麼方法可以讓我返回模型?Laravel 3:有沒有辦法爲您的多對多數據透視表創建一個Eloquent模型?
$user = User::where('id', '=', 1);
$pivot = $user->hasmanyexample()->pivot();
我特別希望能夠做到以下幾點:
$user = User::where('id', '=', 1);
$pivot = $user->example()->pivot();
// class Example_User
// public function role() { return $this->has_one('Role', 'role_id'); }
$role = $pivot->role();
真棒回答就在這裏。 – 2013-03-13 15:06:11