laravel Eloquent模型 關於模型關聯屬性獲取

bigdaxin發表於2021-05-31

User模型

public function groups()
    {
        return $this->belongsToMany(Group::class)
            ->orderByDesc('weight')
            ->withPivot('expiration_time');
    }

資料
$user->groups$user->groups()->get()都可以拿到資料。

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章