Rumah  >  Soal Jawab  >  teks badan

Apakah laluan yang terkandung dalam `Route::auth();` Laravel 5.2 dan di manakah saya boleh melihatnya?

Apakah laluan yang disertakan Route::auth();laravel 5.2 dan di mana saya boleh melihatnya?

phpcn_u1582phpcn_u15822734 hari yang lalu387

membalas semua(1)saya akan balas

  • 巴扎黑

    巴扎黑2017-05-16 16:55:03

    @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');
    }

    balas
    0
  • Batalbalas