mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-28 00:43:57 +00:00
Major incomplete Change
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
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');
|
||||
}}
|
||||
Reference in New Issue
Block a user