0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ポートフォリオ作成時メモ part3 ~Breezeの追加(ユーザー登録、ログイン機能追加)

Posted at

はじめに

こんにちは、未経験からエンジニア転職を目指しているものです。
オンラインスクールで本格的に学習して6ヶ月目に入りました。PHP,Laravelを学習しポートフォリオを作成中です。ポートフォリオ作成手順及び、エラー内容を中心に記録していこうと思います。今回はBreezeを追加しました。本投稿は流れのメモが重点になっておりますので、削除した部分や追加した部分の詳細は割愛致します。

実施内容

変更、追加したディレクトリ
app

  • Http/Controllers/Auth/AuthenticatedSessionController.php
  • Http/Controllers/Auth/ConfirmablePasswordController.php
  • Http/Controllers/Auth/EmailVerificationNotificationController.php
  • Http/Controllers/Auth/EmailVerificationPromptController.php
  • Http/Controllers/Auth/NewPasswordController.php
  • Http/Controllers/Auth/PasswordController.php
  • Http/Controllers/Auth/PasswordResetLinkController.php
  • Http/Controllers/Auth/RegisteredUserController.php
  • Http/Controllers/Auth/VerifyEmailController.php
  • Http/Controllers/ProfileController.php

  • Http/Requests/Auth/LoginRequest.php
  • Http/Requests/ProfileUpdateRequest.php

package-lock.json

  • package-lock.json

resources/views

  • auth/confirm-password.blade.php
  • auth/forgot-password.blade.php
  • auth/login.blade.php
  • auth/register.blade.php
  • auth/register.blade.php
  • auth/verify-email.blade.php

  • components/application-logo.blade.php
  • components/auth-session-status.blade.php
  • components/danger-button.blade.php
  • components/dropdown-link.blade.php
  • components/dropdown.blade.php
  • components/input-error.blade.php
  • components/input-label.blade.php
  • components/modal.blade.php
  • components/nav-link.blade.php
  • components/primary-button.blade.php
  • components/responsive-nav-link.blade.php
  • components/secondary-button.blade.php
  • components/text-input.blade.php

  • dashboard.blade.php

  • layouts/app.blade.php
  • layouts/guest.blade.php
  • layouts/navigation.blade.php

  • profile/edit.blade.php
  • profile/partials/delete-user-form.blade.php
  • profile/partials/update-password-form.blade.php
  • profile/partials/update-profile-information-form.blade.php

routes

  • auth.php

tests/Feature

  • Auth/AuthenticationTest.php
  • Auth/EmailVerificationTest.php
  • Auth/PasswordConfirmationTest.php
  • Auth/PasswordResetTest.php
  • Auth/PasswordUpdateTest.php
  • Auth/RegistrationTest.php
  • ProfileTest.php

※コマンド入力で自動作成されたディレクトリになります。

実施コマンド

./vendor/bin/sail composer require laravel/breeze --dev
./vendor/bin/sail artisan breeze:install
./vendor/bin/sail artisan migrate

ブラウザ上の表示
ユーザー登録、ログイン画面完了画面.png

次回実施内容

  • 設定とメッセージの日本語化

最後までご覧いただき本当にありがとうございました!!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?