You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You have to just follow a few steps to get following web services
varrification Account
Register
open model \ user.php file and add service provider.
<?phpnamespaceApp\Models;useIlluminate\Contracts\Auth\MustVerifyEmail;useIlluminate\Database\Eloquent\Factories\HasFactory;useIlluminate\Foundation\Auth\UserasAuthenticatable;useIlluminate\Notifications\Notifiable;classUserextendsAuthenticatableimplementsMustVerifyEmail{useHasFactory,Notifiable;/** * The attributes that are mass assignable. * * @var array */protected$fillable=['name','email','password',];/** * The attributes that should be hidden for arrays. * * @var array */protected$hidden=['password','remember_token',];/** * The attributes that should be cast to native types. * * @var array */protected$casts=['email_verified_at'=>'datetime',];}