PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
acl
/
src
/
Traits
<?php namespace Botble\ACL\Traits; trait RedirectsUsers { /** * Get the post register / login redirect path. * * @return string */ public function redirectPath() { if (method_exists($this, 'redirectTo')) { return $this->redirectTo(); } return property_exists($this, 'redirectTo') ? $this->redirectTo : '/'; } }
[-] RedirectsUsers.php
[edit]
[+]
..
[-] SendsPasswordResetEmails.php
[edit]
[-] PermissionTrait.php
[edit]
[-] ResetsPasswords.php
[edit]
[-] RegistersUsers.php
[edit]
[-] VerifiesEmails.php
[edit]
[-] ThrottlesLogins.php
[edit]
[-] LogoutGuardTrait.php
[edit]
[-] AuthenticatesUsers.php
[edit]