*/ use HasFactory; protected $fillable = ['phone', 'otp', 'expires_at', 'verified']; protected function casts(): array { return [ 'expires_at' => 'datetime', 'verified' => 'boolean', ]; } public function coupon(): HasOne { return $this->hasOne(Coupon::class, 'phone', 'phone'); } }