coolify/app/Models/TeamInvitation.php

22 lines
329 B
PHP
Raw Normal View History

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