Closed felix-exon closed 8 months ago
I'll have to check WebAuthn API to remember what is the purpose of the alias. AFICR, it's user-land to alias the credentials.
you are passing a string to
$request->save($request->input('alias'));
you should pass an array
$request->save(['alias' => $request->input('alias')]);
PHP & Platform
8.1.11 - Mac OS Ventura 13.2
Database
latest (docker)
Laravel version
9.19
Have you done this?
Expectation
alias should be reflected in the database but it is not.
Description
sadly the parameter seems to be dropped.
Reproduction