File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -93,4 +93,14 @@ public function getFilamentAvatarUrl(): ?string
93
93
{
94
94
return $ this ->avatar ? diskPublic ()->url ($ this ->avatar ) : 'https://gravatar.com/avatar/ ' .hash ('sha256 ' , $ this ->email );
95
95
}
96
+
97
+ /**
98
+ * Send the email verification notification.
99
+ *
100
+ * @return void
101
+ */
102
+ public function sendEmailVerificationNotification ()
103
+ {
104
+ $ this ->notify (new \App \Notifications \VerifyEmail );
105
+ }
96
106
}
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace App \Notifications ;
4
+
5
+ use Illuminate \Auth \Notifications \VerifyEmail as NotificationsVerifyEmail ;
6
+ use Illuminate \Bus \Queueable ;
7
+ use Illuminate \Contracts \Queue \ShouldQueue ;
8
+
9
+ class VerifyEmail extends NotificationsVerifyEmail implements ShouldQueue
10
+ {
11
+ use Queueable;
12
+ }
You can’t perform that action at this time.
0 commit comments