관리-도구
편집 파일: TeamInvitation.php
<?php namespace Laravel\Jetstream; use Illuminate\Database\Eloquent\Model; class TeamInvitation extends Model { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'email', 'role', ]; /** * Get the team that the invitation belongs to. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function team() { return $this->belongsTo(Jetstream::teamModel()); } }