*/ protected $fillable = [ 'name', 'email', 'password', 'email_verified_at', 'remember_token', ]; /** * Override the email verification notification. */ public function sendEmailVerificationNotification() { // Mengirim notifikasi verifikasi email menggunakan bawaan Laravel $this->notify(new \Illuminate\Auth\Notifications\VerifyEmail); } }