Laravel Relation Select Fields

public function user()
{
    return $this->belongsTo('User')->select(['id', 'username']);
}
Shadow