large commit

This commit is contained in:
omair saleh
2021-03-11 13:06:02 +08:00
parent 13ddf458db
commit 05401f6bbc
729 changed files with 23312 additions and 7218 deletions
+28
View File
@@ -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');
}
}