movie-night-api/app/Models/Invitation.php

19 lines
272 B
PHP
Raw Permalink Normal View History

2026-02-18 00:15:02 -06:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Invitation extends Model
{
const EXPIRATION_DAYS = 7;
protected $fillable = [
'email',
'token',
'movie_list_id',
'status',
'expires_at',
];
2026-02-18 00:15:02 -06:00
}