Skip to content

Latest commit

 

History

History
157 lines (110 loc) · 4.91 KB

UPGRADE.md

File metadata and controls

157 lines (110 loc) · 4.91 KB

Upgrade Guide

Upgrading From Jetstream 1.x To Jetstream 2.x

Note: This upgrade guide only discusses upgrading to Jetstream 2.x. Upgrading your Tailwind, Livewire or Inertia installations is outside the scope of this documentation and is not strictly required in order to use Jetstream 2.x. Please consult the upgrade guides for those libraries for information on their upgrade process.

Changes Common To Both Stacks

Publish Views

Before upgrading, you should publish all of Jetstream's views using the vendor:publish Artisan command. You may skip this step if you have already published Jetstream's views:

php artisan vendor:publish --tag=jetstream-views

Dependency Versions

Next, you should upgrade your laravel/jetstream dependency to ^2.0 within your application's composer.json file and run the composer update command:

composer update

Remove Team Member Action

You should place the new RemoveTeamMember action within your application's app/Actions/Jetstream directory.

In addition, you should register this action with Jetstream by adding the following code to the boot method of your application's JetstreamServiceProvider:

use App\Actions\Jetstream\RemoveTeamMember;

Jetstream::removeTeamMembersUsing(RemoveTeamMember::class);

Team Invitation Model

You should place the new TeamInvitation model within your application's app/Models directory.

In addition, you should create a team_invitations database migration:

php artisan make:migration create_team_invitations_table

The generated migration should have the following content:

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateTeamInvitationsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('team_invitations', function (Blueprint $table) {
            $table->id();
            $table->foreignId('team_id')->constrained()->cascadeOnDelete();
            $table->string('email')->unique();
            $table->string('role')->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('team_invitations');
    }
}

Livewire Stack

Navigation Menu

Rename the resources/views/navigation-dropdown.blade.php file to navigation-menu.blade.php. In addition, ensure that you have updated the reference to this view in your application's app.blade.php layout.

Inertia Stack

Authentication Views

Jetstream 2.0's Inertia stack uses Vue based authentication pages. In order to use the new Vue based authentication pages, you will need to publish them using the vendor:publish Artisan command:

php artisan vendor:publish --tag=jetstream-inertia-auth-pages

Or, if you wish to to continue to render your Blade based authentication views in Jetstream 2.x, you should add the following code to the boot method of your application's JetstreamServiceProvider class:

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
use Laravel\Fortify\Fortify;

Fortify::loginView(function () {
    return view('auth/login', [
        'canResetPassword' => Route::has('password.request'),
        'status' => session('status'),
    ]);
});

Fortify::requestPasswordResetLinkView(function () {
    return view('auth/forgot-password', [
        'status' => session('status'),
    ]);
});

Fortify::resetPasswordView(function (Request $request) {
    return view('auth/reset-password', [
        'email' => $request->input('email'),
        'token' => $request->route('token'),
    ]);
});

Fortify::registerView(function () {
    return view('auth/register');
});

Fortify::verifyEmailView(function () {
    return view('auth/verify-email', [
        'status' => session('status'),
    ]);
});

Fortify::twoFactorChallengeView(function () {
    return view('auth/two-factor-challenge');
});

Fortify::confirmPasswordView(function () {
    return view('auth/confirm-password');
});

Remove laravel-jetstream NPM Package

As of the Jetstream 2.0 release, this library is no longer necessary as all of its features have been incorporated into Inertia itself. You should remove the following from your resources/js/app.js file:

import {InertiaForm} from 'laravel-jetstream';

Vue.use(InertiaForm);

Finally, you may remove the package:

npm uninstall laravel-jetstream