PHP code example of artmin96 / filament-password-less
1. Go to this page and download the library: Download artmin96/filament-password-less library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
artmin96 / filament-password-less example snippets
return [
/**
* Magic link
*
* Maybe you want to log in with a temporary generated link.
* If yes, set it to true.
*/
'using_magic_link' => false,
/**
* Rate limit count
*/
'rate_limit_count' => 5,
/**
* Passphrase count
*
* Passphrase is a combination of 3 or 4 words separated by hyphens.
*/
'passphrase_count' => 3,
/**
* Passphrase expiry (minutes)
*/
'passphrase_expiry' => 15,
/**
* User model
*/
'user_model' => \App\Models\User::class,
/**
* Login confirmation page component
*
* If you want to change something, place your component here.
*/
'confirm_passphrase_component' => \ArtMin96\FilamentPasswordLess\Http\Livewire\Auth\Confirm::class,
];
use Illuminate\Foundation\Auth\User as Authenticatable;
use ArtMin96\FilamentPasswordLess\Traits\PasswordLessLogin;
class User extends Authenticatable
{
use PasswordLessLogin;
// ...
}