Emmanuel
Emmanuel
FFilament
Created by ngoquocdat on 9/18/2023 in #❓┊help
404 on own panel
can you be more precise on what problem you have?
4 replies
FFilament
Created by erdiegoant on 8/27/2023 in #❓┊help
Create tenant page breaks if we have a custom profile page
How did you solve this issue? I am having the same problem.
18 replies
FFilament
Created by LaravelOnline on 8/13/2023 in #❓┊help
Invite To Team
Okay thanks.
10 replies
FFilament
Created by LaravelOnline on 8/13/2023 in #❓┊help
Invite To Team
@sdrosenthal
10 replies
FFilament
Created by LaravelOnline on 8/13/2023 in #❓┊help
Invite To Team
How did you solve this problem? Am currently trying to figure that out. Any hints or tips?
10 replies
FFilament
Created by Emmanuel on 8/19/2023 in #❓┊help
how to setup email verification after setting up multi tenant
I followed the steps in the documentation. I actually found out that when a user registers, the email verification link is sent out and the user is logged in. When the link is clicked the user is redirected to app/new and there he gets the 403 error message. Since no tenant has being created yet. So the email validation doesn’t work because the user hasn’t created a tenant yet
6 replies
FFilament
Created by πTeR on 8/20/2023 in #❓┊help
Multiple login models
You will need to define a new AuthGuard guards' => [ 'web' => [ 'driver' => 'session', 'provider' => 'users', ], 'api' => [ 'driver' => 'token', 'provider' => 'users', 'hash' => false, ],
'consumer' => [ 'driver' => 'session', 'provider' => 'consumers', ], ], And then associate the provider with your model 'providers' => [ 'consumers' => [ 'driver' => 'eloquent', 'model' => App\Consumers::class, ], Then use the new AuthGuard in the filament panel
7 replies