*/ protected $fillable = [ 'user_id', 'provider', 'provider_id', ]; /** * Get the user that owns the social account. */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }