DEV Community

Milan Chheda
Milan Chheda

Posted on • Originally published at milanchheda.com on

[How-to] Disable Registration in Laravel 5.7

[How-to] Disable Registration in Laravel 5.7

In one of my previous posts, I have shown how to disable registration in Laravel.

In Laravel 5.7, a new way has been introduced to disable registration and that's all thanks to Dennis Smink, for his excellent pull request

Auth::routes(['register' => false]);

That's the only code you need to add and that would disable the registration in your Laravel application.

Latest comments (0)