Skip to main content
Premium Members Only
Join to unlock this tutorial and all of our courses.
Premium Tutorial

Filament: User Registration by Email Invitations

November 09, 2023
6 min read

Once you create a Filament User resource - you will get a typical user creation form, which will instantly create a new user. What if you want to send an invitation first and allow the User to join from an email? You can do that, too, but there is some custom work needed.

Let's build an invitation System for our Filament!


Setup

Our project setup includes the following:

  • Fresh Laravel project
  • Filament installation
  • Filament setup

Next, we will work on the default User model and resource.


Creating User Resource

We have to create our User resource to manage our Users. Let's do this:

php artisan make:filament-resource User --generate

Create Invitation Model and Database tables

Let's create our migration:

Migration

Schema::create('invitations', function (Blueprint $table) {
$table->id();
$table->string('email');
$table->timestamps();
});

Then, we can fill our Model:

app/Models/Invitation.php

class Invitation extends Model
{
protected $fillable = [
'email',
];
}

As you can see from the setup, it's a pretty basic Model. All we care about - is the email address being invited.


Modify UserResource Create Button Action - to Invite the User

Next on our list, we need to modify the User Create button. We don't want to create the User right away. We want to invite them via email first. So let's...

Premium Members Only

This advanced tutorial is available exclusively to Laravel Daily Premium members.

Premium membership includes:

Access to all premium tutorials
Video and Text Courses
Private Discord Channel
Emil Enevoldsen avatar

Did some small changes in my invite, made a check first if the user allready exist, and change the create to updateOrCreate, so I don't end up with the same email multiple times in the database

$userExists = User::where('email', $data['email'])->exists();
 
if ($userExists) {
Notification::make('userExists')
->body('User with this email already exists!')
->danger()->send();
 
return;
}
 
$invitation = Invitation::updateOrCreate([
'email' => $data['email'],
], [
'email' => $data['email'],
'role_id' => $data['role_id'],
'inviter_id' => auth()->check() ? auth()->id() : null,
]);
 
Mail::to($invitation->email)->send(new TeamInvitationMail($invitation));

Altso added roles, so in App/Livewire/AcceptInvitation.php I changed the line on create to

'role_id' => $this->invitationModel->role_id, // Role::where('name', 'Employee')->first()->id,
👍 3
🥳 1
👀 1
Lars Friedrich avatar

Thank you for this! For the unique check I just use this one liner:

->unique(User::class, 'email')

in the Add E-Mail Form

->form([
TextInput::make('email')
->email()
->required()
->unique(User::class, 'email')
])
Richard A. Hoyle avatar

In one of your classes you created a step two login. My question is can that be done with filament as well? And if so; can you create a tutorial showing us how to do it?

Modestas avatar

Can you expand on this and point to the lesson you are referring?

By the way, Filament login is just a basic login page out of the box. You can go in and customise it however you need!

Activate Digital avatar

Ive upgraded Laravel 9 to Laravel 10 and installed Filament, set up User Resource etc and started to follow your tutorial with swapping the User Resource button to Invite.

Adding the routes/web.php code is throwing the following:

https://flareapp.io/share/v5pxA0E5

Modestas avatar

Did you import the route? Also, maybe the upgrade path made something different - I'm not sure.

Activate Digital avatar

The top of my routes/web.php:

use App\Livewire\AcceptInvitation;
Modestas avatar

Hmm, not sure what could be wrong here. Are you on livewire 3?

Activate Digital avatar

Livewire 3.2.6 and Filament 3.1.15

Just doing some googling now and will get back to you if I figure it out

Activate Digital avatar

Found the problem: My Model had a typo in the name, so it was throwing a type error

Richard A. Hoyle avatar

Question can this be done using a Role? Say you are hiring someone and want them to fill out a different Registration form that has different questions related to the job that they are being hired for.

And if so can you give an example for us?

Modestas avatar

To achieve this, you simply add the role to your invitation table. From there, it's as simple as displaying different form fields for each of the roles.

Not sure if this is worth covering as it is very simple..

We'd Love Your Feedback

Tell us what you like or what we can improve

Feel free to share anything you like or dislike about this page or the platform in general.