LoginSignup
0
4

More than 3 years have passed since last update.

Laravel6.0でログイン機能の実装メモ

Last updated at Posted at 2019-09-15

前提

laravel6.0へのアップデートにより

laravel5.8までで使用していたコマンド、

$ php artisan make:auth

が変わった。

新コマンド

$ composer require laravel/ui
$ npm i

の後に、

①Vueで実装

$ php artisan ui vue --auth

②Reactで実装

$ php artisan ui react --auth

vueかreactかはお好みで。

最後に

$ php artisan migrate

マイグレーションすればOK!

0
4
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
4