X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/laravel/framework/src/Illuminate/Auth
home
/
prisjneg
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Auth
/
📁
..
📁
Access
📄
AuthManager.php
(8.25 KB)
📄
AuthServiceProvider.php
(3.04 KB)
📄
Authenticatable.php
(1.74 KB)
📄
AuthenticationException.php
(1.07 KB)
📁
Console
📄
CreatesUserProviders.php
(2.42 KB)
📄
DatabaseUserProvider.php
(4.6 KB)
📄
EloquentUserProvider.php
(6.18 KB)
📁
Events
📄
GenericUser.php
(2.49 KB)
📄
GuardHelpers.php
(2.48 KB)
📄
LICENSE.md
(1.05 KB)
📁
Listeners
📁
Middleware
📄
MustVerifyEmail.php
(979 B)
📁
Notifications
📁
Passwords
📄
Recaller.php
(1.83 KB)
📄
RequestGuard.php
(2.07 KB)
📄
SessionGuard.php
(26.48 KB)
📄
TokenGuard.php
(3.37 KB)
📄
composer.json
(1.24 KB)
Editing: MustVerifyEmail.php
<?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; } }
Upload File
Create Folder