[PROMOÇÃO] Assine com + 30% de desconto ANUAL MENSAL (últimas horas)
Rodrigo Caldas
Criador Rodrigo Caldas 22/02/2019

Você não colocou as rotas na descrição do video =D

Manager Carlos Ferreira 22/02/2019

Olá, Rodrigo!

Obrigado por avisar amigo.

Segue:
// Auth::routes();
/*
 * Auth Custon Routes
*/
$this->get('login', 'Auth\LoginController@showLoginForm')->name('login');
$this->post('login', 'Auth\LoginController@login');
$this->post('logout', 'Auth\LoginController@logout')->name('logout');

// Password Reset Routes...
$this->post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail')->name('password.email');
$this->get('password/reset', 'Auth\ForgotPasswordController@showLinkRequestForm')->name('password.request');
$this->post('password/reset', 'Auth\ResetPasswordController@reset')->name('password.reseting');
$this->get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.reset');

// Registration Routes...
$this->group(['middleware' => 'not.domain.main'], function() {
    $this->get('register', 'Auth\RegisterController@showRegistrationForm')->name('register');
    $this->post('register', 'Auth\RegisterController@register')->name('');
});

Carlos Ferreira
Sabe a Solução? Ajude a resolver!

Precisa estar logado para conseguir responder a este ticket!

Clique Aqui Para Entrar!