관리-도구
편집 파일: PasswordResetService.php
<?php namespace App\Services; class PasswordResetService { public function getAddData(string|int $identity, string $token,string $userType):array { return [ 'identity' => $identity, 'token' => $token, 'user_type'=>$userType, 'created_at' => now(), ]; } }