lasthourcloud/app/Models/TeamInvitation.php

20 lines
298 B
PHP
Raw Normal View History

2023-06-09 13:55:21 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TeamInvitation extends Model
{
protected $fillable = [
'team_id',
'email',
'role',
'link',
];
public function team()
{
return $this->belongsTo(Team::class);
}
}