feat: add two-factor authentication support and related configurations

This commit is contained in:
2026-07-24 12:59:10 +02:00
parent 54345e621c
commit 235d5f646c
27 changed files with 2608 additions and 374 deletions

View File

@@ -3,6 +3,7 @@
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Laravel\Fortify\Fortify;
class AppServiceProvider extends ServiceProvider
{
@@ -11,7 +12,9 @@ class AppServiceProvider extends ServiceProvider
*/
public function register(): void
{
//
// This application owns its authentication routes and UI. We use
// Fortify's two-factor primitives without its full route scaffold.
Fortify::ignoreRoutes();
}
/**