You need to call it:
$article->path()
When you do $article->path
, you’re trying to use Eloquent relationship which you don’t have.
You need to call it:
$article->path()
When you do $article->path
, you’re trying to use Eloquent relationship which you don’t have.