認証モジュールを作成しましたphp artisan make:auth
電子メールの検証後に登録成功を変換しようとしましたが、すべての認証コードがベンダー フォルダー内にあることがわかりました。
以下のルートの場合
// Authentication Routes...
Route::get('login', 'Auth\AuthController@showLoginForm');
Route::post('login', 'Auth\AuthController@login');
Route::get('logout', 'Auth\AuthController@logout');
// Registration Routes...
Route::get('register', 'Auth\AuthController@showRegistrationForm');
Route::post('register', 'Auth\AuthController@register');
// Password Reset Routes...
Route::get('password/reset/{token?}', 'Auth\PasswordController@showResetForm');
Route::post('password/email', 'Auth\PasswordController@sendResetLinkEmail');
Route::post('password/reset', 'Auth\PasswordController@reset');
ユーザーを作成し、直接ログインします。しかし、トークン付きのメールを送信してユーザーのメールを確認したいと考えています。
ベンダーで更新するのは良い考えではないことはわかっています. これを処理するように提案してください. または、独自の認証モジュールを作成する必要がありますか?
お時間をいただきありがとうございます、乾杯。