Skip to content

Commit

Permalink
remove default email verified
Browse files Browse the repository at this point in the history
  • Loading branch information
irsyadadl committed Jul 30, 2024
1 parent 4b15ddf commit ddc639d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@

namespace App\Models;

use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;

class User extends Authenticatable implements MustVerifyEmail
class User extends Authenticatable
{
use HasFactory, Notifiable;

Expand Down

0 comments on commit ddc639d

Please sign in to comment.