{"id":44246306,"url":"https://github.com/codebarista/nova-webauthn","last_synced_at":"2026-02-10T12:36:33.243Z","repository":{"id":226938353,"uuid":"756037929","full_name":"codebarista/nova-webauthn","owner":"codebarista","description":"Passkey authentication for Laravel Nova","archived":false,"fork":false,"pushed_at":"2025-03-20T22:02:56.000Z","size":61,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-20T22:33:12.879Z","etag":null,"topics":["authentication","laravel","nova","php","webauthn"],"latest_commit_sha":null,"homepage":"","language":"Blade","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codebarista.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-11T19:52:21.000Z","updated_at":"2025-03-20T21:48:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"f50979f5-58f0-49b8-894d-18331ed19e0d","html_url":"https://github.com/codebarista/nova-webauthn","commit_stats":null,"previous_names":["codebarista/nova-webauthn"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/codebarista/nova-webauthn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebarista%2Fnova-webauthn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebarista%2Fnova-webauthn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebarista%2Fnova-webauthn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebarista%2Fnova-webauthn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codebarista","download_url":"https://codeload.github.com/codebarista/nova-webauthn/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebarista%2Fnova-webauthn/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29298790,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T12:23:18.846Z","status":"ssl_error","status_checked_at":"2026-02-10T12:23:06.082Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["authentication","laravel","nova","php","webauthn"],"created_at":"2026-02-10T12:36:32.575Z","updated_at":"2026-02-10T12:36:33.237Z","avatar_url":"https://github.com/codebarista.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nova WebAuthn\n\n[Laragear WebAuthn](https://github.com/Laragear/WebAuthn) implementation for Laravel Nova to authenticate users with\npasskeys: fingerprints, patterns and biometrics.\n\n![Laravel Nova Passkey Login](https://github.com/user-attachments/assets/a785a28d-1580-4fc9-8f39-b9cb07442d77)\n\n## 1. Installation\n\n```shell\ncomposer require codebarista/nova-webauthn\n```\n\n## 2. Setup\n\nRun the following command to publish and run the Laragear WebAuthn migrations.\n\n```shell\nphp artisan codebarista:webauthn-setup\n```\n\n## 3. Implementation\n\nAdd the `WebAuthnAuthenticatable` contract and the `WebAuthnAuthentication` trait to the User class, or any other that\nuses authentication.\n\n```php\nnamespace App\\Models;\n\nuse Illuminate\\Foundation\\Auth\\User as Authenticatable;\nuse Laragear\\Webauthn\\Contracts\\WebAuthnAuthenticatable;\nuse Laragear\\Webauthn\\WebAuthnAuthentication;\n\nclass User extends Authenticatable implements WebAuthnAuthenticatable\n{\n    use WebAuthnAuthentication;\n\n    // ...\n}\n```\n\nFinally, add the `NovaWebauthn` registration form to the fields array of the Nova User Resource.\n\n```php\nnamespace App\\Nova;\n\nuse Codebarista\\NovaWebauthn\\NovaWebauthn;\nuse Laravel\\Nova\\Http\\Requests\\NovaRequest;\n\nclass User extends Resource\n{\n    public function fields(NovaRequest $request): array\n    {\n        return [\n            // ...\n            NovaWebauthn::make(),\n        ];\n    }\n}\n```\n\n**Note: Make sure that passkey registration and login are done via a secure https connection.**\n\n![Laravel Nova Passkey Registration](https://github.com/user-attachments/assets/6234d24b-666c-4c10-a8db-0e0c28838373)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodebarista%2Fnova-webauthn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodebarista%2Fnova-webauthn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodebarista%2Fnova-webauthn/lists"}