Quelles routes contient `Route::auth();` de Laravel 5.2 et où puis-je les voir ?
phpcn_u1582
phpcn_u1582 2017-05-16 16:53:03
0
1
406

Quels itinéraires inclut Route::auth();laravel 5.2 et où puis-je les voir ?

phpcn_u1582
phpcn_u1582

répondre à tous(1)
巴扎黑
@see Illuminate\Routing\Router.php
public function auth()
{
    // Authentication Routes...
    $this->get('login', 'Auth\AuthController@showLoginForm');
    $this->post('login', 'Auth\AuthController@login');
    $this->get('logout', 'Auth\AuthController@logout');

    // Registration Routes...
    $this->get('register', 'Auth\AuthController@showRegistrationForm');
    $this->post('register', 'Auth\AuthController@register');

    // Password Reset Routes...
    $this->get('password/reset/{token?}', 'Auth\PasswordController@showResetForm');
    $this->post('password/email', 'Auth\PasswordController@sendResetLinkEmail');
    $this->post('password/reset', 'Auth\PasswordController@reset');
}
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal