Sir. NioH
Issues with Email Verification Redirect in Filament/Laravel Setup
It's a plugin or template maybe ?, and I understand. I don't want to waste much of your time. If it's a plugin error, it's best to migrate my project away from that template. I'll try that eventually, thanks. 🙏🏻
33 replies
Issues with Email Verification Redirect in Filament/Laravel Setup
Umm, as far as I know, it works fine. Let me quickly explain the flow: a user is created, they receive the verification email, click on verify, and are sent to the login page. They log in, and that's it. At verification, it stops being null. If this behavior is wrong, please let me know, as this is how it comes by default in the Super Duper Starter Kit template 😦
33 replies
Issues with Email Verification Redirect in Filament/Laravel Setup
`<?php
namespace App\Http\Responses\Auth;
use Filament\Http\Responses\Auth\EmailVerificationResponse as BaseEmailVerificationResponse;
use Illuminate\Http\RedirectResponse;
use Livewire\Features\SupportRedirects\Redirector;
class CustomEmailVerificationResponse extends BaseEmailVerificationResponse
{
public function toResponse($request): RedirectResponse | Redirector
{
return redirect()->route('custom.verification.success');
` the last thing they recommended me was to try with the EmailVerificationResponse file, but as it always gives the same result nothing happens the user is sent to login33 replies
Issues with Email Verification Redirect in Filament/Laravel Setup
hello awcode the truth I have tried so many things and tips and none of them work for me haha it is very simple I am looking for the user after pressing the verification email to be taken to a blade where it says verification successful login, I feel that the default verification is functional but crude ie you press verify and it sends you immediately to the login
33 replies
Issues with Email Verification Redirect in Filament/Laravel Setup
The changes I made to the repository I gave you were very minimal. Look, let's do the following: if you're okay with it, I'll send you the link to the Super Duper Starter Kit directly. If it's possible to implement the function of redirecting the user after verification, I'm sure that if I see an example, I'll learn how to edit it in my more advanced project in the future. Does that sound good, or does it go against the chat rules? Let me know, thanks a lot.
33 replies
Issues with Email Verification Redirect in Filament/Laravel Setup
of course I want it hehe I'm intrigued to know what my error or what happened to the redirection after verification I will upload immediately the minimum version you recommended to isolate the problem.
33 replies
Issues with Email Verification Redirect in Filament/Laravel Setup
ok as I said above whatever changes you make or I can think of a user after pressing the email verification is directed directly to the login and I was hoping to put after the user presses the verification button some blade.
33 replies
Issues with Email Verification Redirect in Filament/Laravel Setup
I tried to install filament super duper kit in a clean way without any configuration but I didn't get it either, I tried in the verificationController class to define where it will be redirected to but neither, in spite of all my attempts I don't know which part forces to send to the login of the panel:
33 replies