mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-25 23:43:58 +00:00
large commit
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class UserEmailVerification extends AbstractModel
|
||||
{
|
||||
protected $table = 'user_email_verifications';
|
||||
|
||||
public $fillable = [
|
||||
'token', 'is_complete', 'is_active', 'is_sent'
|
||||
];
|
||||
/**
|
||||
* @param $query
|
||||
* @return mixed
|
||||
*/
|
||||
public function scopeActive($query){
|
||||
return $query->where('is_active', true)->where('is_complete', false);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsTo
|
||||
*/
|
||||
public function user(): BelongsTo {
|
||||
return $this->belongsTo(User::class, 'email', 'email');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user