Skip to content
Discussion options

You must be logged in to vote

I figured it out ...

You can just copy and paste the respective file in the vendor directory to your own projects location:
Laravel\Jetstream\Http\Livewire\CreateTeamForm -> App\Http\Livewire\Teams

Then inside of app/Providers/JetstreamServiceProvider.php reset the livewire component reference as follows:

...
use App\Http\Livewire\Teams\CreateTeamForm;
use Livewire\Livewire;
...

class JetstreamServiceProvider extends ServiceProvider    {
   
   ...

   public function boot()
    {
        Livewire::component('teams.create-team-form', CreateTeamForm::class);
        ...
    }
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by nagra
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant