LoginSignup
0
1

More than 1 year has passed since last update.

【Laravel】Jetstreamとは

Last updated at Posted at 2023-03-07

Jetstramとは

公式マニュアル

Laravelのバージョン8から導入されたライブラリの集合体。
Jestream自体でルートやビュー、コントローラを担当。
他に以下機能を搭載。

・Laravel Fortify
セッションベースの認証

・Laravel Sanctum
API認証

・ivewire/Inertia.js
ユーザプロフィール、チーム管理のUIビュー

・Tailwind
CSSのフレームワーク

付属機能が必要なければFortufy

インストール

Jetstreamのインストール

composer ewquire laravel/jetstream

composer.jsonにjetstreamが自動追記されます。

image.png

ライブワイヤーのインストール

php artisan jetstream:install livewire

livewireが追記されました。

image.png

npm install && npm rum dev
php artisan migrate
php artisan serve

Laravelのwelocom画面のLogin/Registerも表記されました。

app/Actions
app/Providers
app/View/Components
ファイルなども自動生成されています。

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