Files
izyim/app/Models/UserInvitation.php
T
2019-03-19 17:11:21 +08:00

27 lines
445 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Notifications\Notifiable;
class UserInvitation extends AbstractModel
{
use Notifiable;
public $incrementing = true;
protected $table = 'user_invitation';
protected $fillable = [
'email',
'hash',
'role_id',
'sender_id',
'is_complete',
];
public function sender() {
return $this->belongsTo(user::class, 'sender_id');
}}