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: Authenticatable.php
<?php namespace Illuminate\Auth; trait Authenticatable { /** * The column name of the "remember me" token. * * @var string */ protected $rememberTokenName = 'remember_token'; /** * Get the name of the unique identifier for the user. * * @return string */ public function getAuthIdentifierName() { return $this->getKeyName(); } /** * Get the unique identifier for the user. * * @return mixed */ public function getAuthIdentifier() { return $this->{$this->getAuthIdentifierName()}; } /** * Get the unique broadcast identifier for the user. * * @return mixed */ public function getAuthIdentifierForBroadcasting() { return $this->getAuthIdentifier(); } /** * Get the password for the user. * * @return string */ public function getAuthPassword() { return $this->password; } /** * Get the token value for the "remember me" session. * * @return string|null */ public function getRememberToken() { if (! empty($this->getRememberTokenName())) { return (string) $this->{$this->getRememberTokenName()}; } } /** * Set the token value for the "remember me" session. * * @param string $value * @return void */ public function setRememberToken($value) { if (! empty($this->getRememberTokenName())) { $this->{$this->getRememberTokenName()} = $value; } } /** * Get the column name for the "remember me" token. * * @return string */ public function getRememberTokenName() { return $this->rememberTokenName; } }
Upload File
Create Folder