Laravel: How To disable Login for a deactivated user?
There are cases where you just need to "Deactivate" (Not delete) the user. The use case may also be to block access temporarily for someone. Initial steps Add a column in the user table where you can manage the user activation status. Keeping the col...

