관리-도구
편집 파일: TwoFactorAuthenticationEvent.php
<?php namespace Laravel\Fortify\Events; use Illuminate\Foundation\Events\Dispatchable; abstract class TwoFactorAuthenticationEvent { use Dispatchable; /** * The user instance. * * @var \App\Models\User */ public $user; /** * Create a new event instance. * * @param \App\Models\User $user * @return void */ public function __construct($user) { $this->user = $user; } }