*/ protected $fillable = [ 'email', 'role', ]; /** * Get the organization that the invitation belongs to. * * @return BelongsTo */ public function organization(): BelongsTo { return $this->belongsTo(Jetstream::teamModel(), 'organization_id'); } /** * Get the organization that the invitation belongs to. * * @return BelongsTo */ public function team(): BelongsTo { return $this->belongsTo(Jetstream::teamModel(), 'organization_id'); } }