PHPackages                             codebarista/nova-webauthn - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. codebarista/nova-webauthn

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

codebarista/nova-webauthn
=========================

Authenticate Nova users with Passkeys.

3.1.0(1y ago)3691MITBladePHP ^8.3

Since Mar 10Pushed 1y ago2 watchersCompare

[ Source](https://github.com/codebarista/nova-webauthn)[ Packagist](https://packagist.org/packages/codebarista/nova-webauthn)[ RSS](/packages/codebarista-nova-webauthn/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (2)Versions (12)Used By (0)

Nova WebAuthn
=============

[](#nova-webauthn)

[Laragear WebAuthn](https://github.com/Laragear/WebAuthn) implementation for Laravel Nova to authenticate users with passkeys: fingerprints, patterns and biometrics.

[![Laravel Nova Passkey Login](https://private-user-images.githubusercontent.com/19738505/365392115-a785a28d-1580-4fc9-8f39-b9cb07442d77.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzU3Mjg2MjIsIm5iZiI6MTc3NTcyODMyMiwicGF0aCI6Ii8xOTczODUwNS8zNjUzOTIxMTUtYTc4NWEyOGQtMTU4MC00ZmM5LThmMzktYjljYjA3NDQyZDc3LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA0MDklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNDA5VDA5NTIwMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTczMjA1MWRlOGY4ZTIzMWYwMjM2MWU5NDJlMGY5MGYwYmNlMDVlN2Q3MDQ5ZGIxZDZhMGZlMGMzODllMzU3ZTQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.dUBwrGpje4z4QK1vFpQm4wULq8JqAHebh5FzmFqfWms)](https://private-user-images.githubusercontent.com/19738505/365392115-a785a28d-1580-4fc9-8f39-b9cb07442d77.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzU3Mjg2MjIsIm5iZiI6MTc3NTcyODMyMiwicGF0aCI6Ii8xOTczODUwNS8zNjUzOTIxMTUtYTc4NWEyOGQtMTU4MC00ZmM5LThmMzktYjljYjA3NDQyZDc3LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA0MDklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNDA5VDA5NTIwMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTczMjA1MWRlOGY4ZTIzMWYwMjM2MWU5NDJlMGY5MGYwYmNlMDVlN2Q3MDQ5ZGIxZDZhMGZlMGMzODllMzU3ZTQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.dUBwrGpje4z4QK1vFpQm4wULq8JqAHebh5FzmFqfWms)

1. Installation
---------------

[](#1-installation)

```
composer require codebarista/nova-webauthn
```

2. Setup
--------

[](#2-setup)

Run the following command to publish and run the Laragear WebAuthn migrations.

```
php artisan codebarista:webauthn-setup
```

3. Implementation
-----------------

[](#3-implementation)

Add the `WebAuthnAuthenticatable` contract and the `WebAuthnAuthentication` trait to the User class, or any other that uses authentication.

```
namespace App\Models;

use Illuminate\Foundation\Auth\User as Authenticatable;
use Laragear\Webauthn\Contracts\WebAuthnAuthenticatable;
use Laragear\Webauthn\WebAuthnAuthentication;

class User extends Authenticatable implements WebAuthnAuthenticatable
{
    use WebAuthnAuthentication;

    // ...
}
```

Finally, add the `NovaWebauthn` registration form to the fields array of the Nova User Resource.

```
namespace App\Nova;

use Codebarista\NovaWebauthn\NovaWebauthn;
use Laravel\Nova\Http\Requests\NovaRequest;

class User extends Resource
{
    public function fields(NovaRequest $request): array
    {
        return [
            // ...
            NovaWebauthn::make(),
        ];
    }
}
```

**Note: Make sure that passkey registration and login are done via a secure https connection.**

[![Laravel Nova Passkey Registration](https://private-user-images.githubusercontent.com/19738505/365392240-6234d24b-666c-4c10-a8db-0e0c28838373.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzU3Mjg2MjIsIm5iZiI6MTc3NTcyODMyMiwicGF0aCI6Ii8xOTczODUwNS8zNjUzOTIyNDAtNjIzNGQyNGItNjY2Yy00YzEwLWE4ZGItMGUwYzI4ODM4MzczLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA0MDklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNDA5VDA5NTIwMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTI2Njg0YWVkYmVkZDViNTQ5MjRkYzNmYzM3OWQzNTMxNGFiNzRmYWE3ODE0NzVjYjQ3MzAwNDcxNGMwMTAyYWImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.OwUJi6HgMlx_aOEO56yu9HROZIGEcWaOzbcyZXe4B8o)](https://private-user-images.githubusercontent.com/19738505/365392240-6234d24b-666c-4c10-a8db-0e0c28838373.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzU3Mjg2MjIsIm5iZiI6MTc3NTcyODMyMiwicGF0aCI6Ii8xOTczODUwNS8zNjUzOTIyNDAtNjIzNGQyNGItNjY2Yy00YzEwLWE4ZGItMGUwYzI4ODM4MzczLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA0MDklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNDA5VDA5NTIwMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTI2Njg0YWVkYmVkZDViNTQ5MjRkYzNmYzM3OWQzNTMxNGFiNzRmYWE3ODE0NzVjYjQ3MzAwNDcxNGMwMTAyYWImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.OwUJi6HgMlx_aOEO56yu9HROZIGEcWaOzbcyZXe4B8o)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance45

Moderate activity, may be stable

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~37 days

Recently: every ~48 days

Total

11

Last Release

422d ago

Major Versions

1.0.2 → 2.0.02024-09-05

2.0.5 → 3.0.02025-02-16

PHP version history (2 changes)1.0.0PHP ^8.2

3.0.0PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/d0c255f53a64088da924587fe79d03053cf4aac742dbb573dd3481171e020682?d=identicon)[codebarista](/maintainers/codebarista)

---

Top Contributors

[![codebarista](https://avatars.githubusercontent.com/u/19738505?v=4)](https://github.com/codebarista "codebarista (23 commits)")

---

Tags

authenticationlaravelnovaphpwebauthnlaravelwebauthnnovapasskeyfaceidtouchidlaragearwebpass

### Embed Badge

![Health badge](/badges/codebarista-nova-webauthn/health.svg)

```
[![Health](https://phpackages.com/badges/codebarista-nova-webauthn/health.svg)](https://phpackages.com/packages/codebarista-nova-webauthn)
```

###  Alternatives

[laragear/webauthn

Authenticate users with Passkeys: fingerprints, patterns and biometric data.

403480.4k8](/packages/laragear-webauthn)[vyuldashev/nova-permission

A Laravel Nova tool for Spatie's Permission library.

4332.5M3](/packages/vyuldashev-nova-permission)[kabbouchi/nova-impersonate

A Laravel Nova field allows you to authenticate as your users.

2352.1M](/packages/kabbouchi-nova-impersonate)[kiritokatklian/nova-permission

A Laravel Nova tool for Spatie's Permission library.

791.1M3](/packages/kiritokatklian-nova-permission)[sereny/nova-permissions

Laravel Nova - Roles &amp; Permissions

86388.6k1](/packages/sereny-nova-permissions)[visanduma/nova-two-factor

Nova Two Factor Authentication

56621.3k](/packages/visanduma-nova-two-factor)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
