Laravel - Call to undefined method Illuminate\Database\Query\Builder::user()
Your note
model is lacking the relationship definition for it's associated user
, it looks like.
You should just be able to add the relationship in the Notes
model like this:
public function user()
{
return $this->belongsTo(User::class);
}