首页 > 解决方案 > 访问 morphedByMany 关系

问题描述

你知道如何访问 morphedByMany 关系吗?

我得到了这个 api 路由,当我访问这个路径时,我将看到所有附加了特定 TAG 的文章:

Route::get('/tags/{tag:slug}', 'Tags\TagController@index');

标签型号:

  public function articles()
    {
        return $this–>morphedByMany(Article::class, 'taggable' );
    }

控制器:

return $tag->load(['articles']);

我收到此错误:调用未定义函数 App\morphedByMany()

标签: phplaravel

解决方案


推荐阅读