We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39086c2 commit ed91518Copy full SHA for ed91518
README.md
@@ -62,10 +62,11 @@ The model representing the `User` must implement the `CanVerifyEmail` interface.
62
63
64
```php
65
+use Illuminate\Foundation\Auth\User as Authenticatable;
66
use Lunaweb\EmailVerification\Traits\CanVerifyEmail;
67
use Lunaweb\EmailVerification\Contracts\CanVerifyEmail as CanVerifyEmailContract;
68
-class User implements CanVerifyEmailContract
69
+class User extends Authenticatable implements CanVerifyEmailContract
70
{
71
72
use CanVerifyEmail;
0 commit comments