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?

More than 1 year has passed since last update.

Laravel9のauth導入手順(Windows)

Posted at

私は、Laravel6の開発経験があるのですが、最新バージョンを勉強がてらやろうと思ったのですが、
make:authコマンドが廃止されていたため、導入手順を備忘録として残します。
※実施環境:Windows、Laravel9


①composerからlaravel/uiを導入

composer require laravel/ui

②authソースのジェネレートと、マイグレーション

php artisan ui vue --auth
php artisan migrate

③npmからパッケージのインストール
 ※npmがインストールされていない場合は、以下のURLからインストールする。
  (npmが一緒にインストールされます。)
  https://nodejs.org/en/

npm -i
npm i vue-loader

④npmからパッケージのビルド

npm run dev

ここまでの手順を実施すると、以下の画面が表示されます。
http://localhost/login


login.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?