Published
- 1 min read
laravel append to model
The solution for this is noted below
laravel append to model
Solution
protected $appends = ['user'];
public function getUserAttribute()
{
return $this->user();
}
Try other methods by searching on the site. That is if this doesn’t work