123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Models;
- use Laravel\Jetstream\Jetstream;
- use Laravel\Jetstream\TeamInvitation as JetstreamTeamInvitation;
- class TeamInvitation extends JetstreamTeamInvitation
- {
- /**
- * 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());
- }
- }
|