feat: add attributes method to RejectVerificationRequest for localized error messages
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (8.3) (push) Waiting to run
tests / ci (8.4) (push) Waiting to run
tests / ci (8.5) (push) Waiting to run

This commit is contained in:
Yoga Pangestu 2026-07-06 09:38:20 +07:00
parent 5a77623392
commit 138eb8b053

View File

@ -17,4 +17,14 @@ public function rules(): array
'reason' => ['required', 'string', 'max:500'],
];
}
/**
* @return array<string, string>
*/
public function attributes(): array
{
return [
'reason' => 'alasan penolakan',
];
}
}