Skip to content

Customized Invitation process for adding Jetstream Users to a Team

License

Notifications You must be signed in to change notification settings

falko189/jetstream-team-invites

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Custom Laravel Jetstream Team Invites

Prerequisites

This package assumes you have already installed Jetstream and your Team and User Models are in the app/Models directory and namespace.

Installation

Install this package via Composer by adding the package and the repository link:

"require": {
  "truefrontier/jetstream-team-invites": "dev-main",
},

// ...

"repositories": [
  {
    "type":"vcs",
    "url": "https://github.com/truefrontier/jetstream-team-invites"
  }
],

Then run:

composer update

Publish the config options:

php artisan vendor:publish --provider="Truefrontier\JetstreamTeamInvites\JetstreamTeamInvitesServiceProvider" --force

Lastly, add the Invitation Trait to your Team and User Model:

use Truefrontier\JetstreamTeamInvites\Traits\HasJetstreamTeamInvites;

class User
{
    use HasJetstreamTeamInvites;

License

The MIT License (MIT). Please see License File for more information.

About

Customized Invitation process for adding Jetstream Users to a Team

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 78.0%
  • Vue 19.5%
  • Blade 2.5%