1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laravel 認証機能 (インストール編)

Last updated at Posted at 2020-07-25

#認証機能の追加
Laravel6から仕様が変更され、追加手順が変わったようですね。
→ここではLaravel7で操作しています。

##手順概要

  1. ライブラリ「laravel/ui」をインストール。
  2. 認証機能に必要なファイルをダウンロード。

##手順詳細
1.ターミナル(コマンド)から、ライブラリ「laravel/ui」をインストール

composer require laravel/ui

2.ターミナル(コマンド)から、認証機能に必要なファイルをダウンロード

php artisan ui vue --auth

認証機能に必要な更新が行われます。
→ファイルの追加、編集。
06edit.png

3.更新に成功すると、右上に「LOGIN」「REGISTER」が追加されます。

[追加前]
01.png

[追加後]
04.png

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?