Plugins
Passkeys
Use passkeys in your Filament app
Panel Authentication
S
Spatie Integration
Dark theme support
Yes
Multi language support
Yes
Compatible with the latest version
Supported versions: 4.x
Documentation

Latest Version on Packagist Total Downloads GitHub Code Style Action Status Filament 4.x

Use passkeys in your filament app. This package is using the passkeys package from spatie.

Filament Passkeys cover

 

#Installation

  1. Install the package via composer:
composer require marcelweidum/filament-passkeys
  1. Add the package's interface and trait to your user model
namespace App\Models;
 
use Spatie\LaravelPasskeys\Models\Concerns\HasPasskeys;
use Spatie\LaravelPasskeys\Models\Concerns\InteractsWithPasskeys;
// ...
 
class User extends Authenticatable implements HasPasskeys
{
use HasFactory, Notifiable, InteractsWithPasskeys;
 
// ...
}
  1. Publish and run the migrations
php artisan vendor:publish --tag="passkeys-migrations"
php artisan migrate
  1. Add the package provided routes
// routes/web.php
Route::passkeys();

(Optional) If you want to customize the translations, you can publish the translations by running:

php artisan vendor:publish --tag="filament-passkeys-translations"

#Common problems

If you're having problems creating passkeys on your profile page, check if your APP_URL in the .env file is set to the correct url of the application.

#Contributing

Please see CONTRIBUTING for details.

#Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

#Credits

#License

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

MarcelWeidum

Marcel is a software engineer and an enthusiastic open-source contributor & maintainer.

2
Plugins
69
Stars
More from this author
Featured Plugins