PATH:
home
/
lab2454c
/
credityorkgroup.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Auth
<?php namespace Illuminate\Auth; use Illuminate\Auth\Notifications\VerifyEmail; 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 VerifyEmail); } /** * Get the email address that should be used for verification. * * @return string */ public function getEmailForVerification() { return $this->email; } }
[-] composer.json
[edit]
[-] EloquentUserProvider.php
[edit]
[-] GuardHelpers.php
[edit]
[-] AuthManager.php
[edit]
[-] Recaller.php
[edit]
[+]
..
[-] DatabaseUserProvider.php
[edit]
[-] Authenticatable.php
[edit]
[-] CreatesUserProviders.php
[edit]
[-] GenericUser.php
[edit]
[+]
Events
[+]
Middleware
[-] TokenGuard.php
[edit]
[+]
Listeners
[-] RequestGuard.php
[edit]
[+]
Passwords
[-] LICENSE.md
[edit]
[-] MustVerifyEmail.php
[edit]
[+]
Access
[+]
Console
[-] AuthenticationException.php
[edit]
[-] SessionGuard.php
[edit]
[-] AuthServiceProvider.php
[edit]
[+]
Notifications