I get the Illegal offset type error with protected $withCount = ['replies'] or Post::withCount('replies').
Any fix soon?
Solved by Appending and Accessor
protected $appends = ['RepliesCount'];
public function getRepliesCountAttribute()
{
return $this->replies->count();
}
Please reopen this issue the workaround by making it an accessor will not help eager loading.
withCount should be the proper way to do this.
@alexjose done.
Most helpful comment
Please reopen this issue the workaround by making it an accessor will not help eager loading.
withCountshould be the proper way to do this.