mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-03 11:09:27 +00:00
19 lines
355 B
PHP
19 lines
355 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 注册时的激活验证码
|
|
*/
|
|
class VerifyCode extends Model
|
|
{
|
|
protected $table = 'verify_code';
|
|
|
|
public function scopeRecentUnused($query)
|
|
{
|
|
return $query->whereStatus(0)->where('created_at', '<=', date('Y-m-d H:i:s', strtotime('-15 minutes')));
|
|
}
|
|
}
|