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?

【Laravel】-初学者向け 認証について

Posted at

Laravelには認証機能があります。

「Laravel Breeze(ララベルブリーズ)」という認証機能があります。
ログイン、ユーザー登録、パスワードのリセット、メール検証、パスワード確認といった機能があります。
インストールすると、下記のログイン画面が出てきます!
image.png

Laravel Breeze(ララベルブリーズ)インストール方法

  • コマンドプロンプトを開きます。
    ※1.13はバージョン名を入れています。
cd プロジェクト名
composer require laravel/breeze:^1.13 --dev

composer.jsonに下記のように追記されております。
image.png

再度、コマンドプロンプトを開き、下記のコマンドをたたきます。

php artisan breeze:install

インストールすると、様々なファイルに追記されます。

composer.json 追記 package.json 追記
App\Models\User.php 追記
resources/css/app.css 追記
resources/js/app.js 追記

下記が追加されます。

App/Http/Controllers/Auth 
App/View/Components  
resources/views/auth 
resources/views/components 
resources/views/layouts 
resources/views/dashboard.blade.php 
routes/auth.php

コマンドをたたき終わったら、下記画面にログインや登録画面が出てきます。

image.png

image.png
image.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?