%PDF- %PDF-
Direktori : /var/www/html/kpk/api/vendor/laravel/framework/src/Illuminate/Auth/ |
Current File : /var/www/html/kpk/api/vendor/laravel/framework/src/Illuminate/Auth/MustVerifyEmail.php |
<?php namespace Illuminate\Auth; trait MustVerifyEmail { /** * Determine if the user has verified their email address. * * @return bool */ public function hasVerifiedEmail() { return ! is_null($this->email_verified_at); } /** * Mark the given user's email as verified. * * @return bool */ public function markEmailAsVerified() { return $this->forceFill([ 'email_verified_at' => $this->freshTimestamp(), ])->save(); } /** * Send the email verification notification. * * @return void */ public function sendEmailVerificationNotification() { $this->notify(new Notifications\VerifyEmail); } }