Skip to content

Commit ed91518

Browse files
authored
Update README.md
1 parent 39086c2 commit ed91518

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,11 @@ The model representing the `User` must implement the `CanVerifyEmail` interface.
6262

6363

6464
```php
65+
use Illuminate\Foundation\Auth\User as Authenticatable;
6566
use Lunaweb\EmailVerification\Traits\CanVerifyEmail;
6667
use Lunaweb\EmailVerification\Contracts\CanVerifyEmail as CanVerifyEmailContract;
6768

68-
class User implements CanVerifyEmailContract
69+
class User extends Authenticatable implements CanVerifyEmailContract
6970
{
7071

7172
use CanVerifyEmail;

0 commit comments

Comments
 (0)