관리-도구
편집 파일: EmailOtp.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class EmailOtp extends Model { protected $fillable = [ 'email', 'otp', 'expires_at', ]; protected $table = 'email_otps'; }