PATH:
home
/
lab2454c
/
credityorkgroup.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Auth
/
Events
<?php namespace Illuminate\Auth\Events; use Illuminate\Queue\SerializesModels; class PasswordReset { use SerializesModels; /** * The user. * * @var \Illuminate\Contracts\Auth\Authenticatable */ public $user; /** * Create a new event instance. * * @param \Illuminate\Contracts\Auth\Authenticatable $user * @return void */ public function __construct($user) { $this->user = $user; } }
[-] Verified.php
[edit]
[-] CurrentDeviceLogout.php
[edit]
[-] Failed.php
[edit]
[-] Attempting.php
[edit]
[-] Lockout.php
[edit]
[+]
..
[-] Logout.php
[edit]
[-] Login.php
[edit]
[-] PasswordReset.php
[edit]
[-] OtherDeviceLogout.php
[edit]
[-] Registered.php
[edit]
[-] Validated.php
[edit]
[-] Authenticated.php
[edit]