fix: lower case email on waitlist
This commit is contained in:
@@ -6,6 +6,7 @@ use App\Jobs\SendConfirmationForWaitlistJob;
|
|||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use App\Models\Waitlist;
|
use App\Models\Waitlist;
|
||||||
use Livewire\Component;
|
use Livewire\Component;
|
||||||
|
use Str;
|
||||||
|
|
||||||
class Index extends Component
|
class Index extends Component
|
||||||
{
|
{
|
||||||
@@ -46,7 +47,7 @@ class Index extends Component
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$waitlist = Waitlist::create([
|
$waitlist = Waitlist::create([
|
||||||
'email' => $this->email,
|
'email' => Str::lower($this->email),
|
||||||
'type' => 'registration',
|
'type' => 'registration',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user