mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
13 lines
190 B
PHP
13 lines
190 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
class Invite extends NexusModel
|
||
|
|
{
|
||
|
|
protected $table = 'invites';
|
||
|
|
|
||
|
|
protected $fillable = [
|
||
|
|
'inviter', 'invitee', 'hash', 'time_invited',
|
||
|
|
];
|
||
|
|
}
|