LoginSignup
0
0

More than 1 year has passed since last update.

Jetstreamに軽く触れてみた

Last updated at Posted at 2022-04-29

Jetstreamとは

ログイン機能にメール検証、2段階認証やteams(権限)の機能が付与できる
Vue.jsを使用したライブラリ?である。
便利そうなので残しておく。

jetstream公式サイト

インストール

Laravelを先にインストールし、その後にjetstreamをインストールする

composer require laravel/jetstream

その後livewireかinertiaを選択することになると思います。
livewireはVue.jsの知識があまり無くても使える認識です。

inertiaはVue.jsの知識があれば使いやすいと思います。
Vue Routerを使わずAction(Controller)で直接やりとりできるので
便利だと思います。

php artisan jetstream:install inertia

php artisan jetstream:install inertia --teams

--teamsのオプションをつけるとteamsテーブルが作成され権限で使えそうな設定を付与することもできます。

あとは以下のコマンドでログイン画面やダッシュボードが自動で作成されます。

npm install
npm run dev
php artisan migrate
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