VerifyCode.php 449 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 注册时的激活验证码
  6. */
  7. class VerifyCode extends Model
  8. {
  9. protected $table = 'verify_code';
  10. public function scopeRecentUnused($query)
  11. {
  12. return $query->whereStatus(0)->where(
  13. 'created_at',
  14. '<=',
  15. date(
  16. "Y-m-d H:i:s",
  17. strtotime("-15 minutes")
  18. )
  19. );
  20. }
  21. }