Proje dosyaları eklendi

This commit is contained in:
2026-08-29 15:53:53 +03:00
commit d3313400ca
440 changed files with 24827 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace App\Notifications;
use Illuminate\Auth\Notifications\VerifyEmail;
use Illuminate\Support\Facades\URL;
class EarnVerifyEmail extends VerifyEmail
{
protected function verificationUrl($notifiable): string
{
return URL::temporarySignedRoute('earn.verification.verify', now()->addMinutes(60), [
'id' => $notifiable->getKey(),
'hash' => sha1($notifiable->getEmailForVerification()),
]);
}
}