Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akmamun/laravel-5.5-auth-email-verification
Laravel 5.5 Email Verify Authentication Using Job Queue
https://github.com/akmamun/laravel-5.5-auth-email-verification
authentication email-verification job-queue laravel laravel55 php verification
Last synced: about 2 months ago
JSON representation
Laravel 5.5 Email Verify Authentication Using Job Queue
- Host: GitHub
- URL: https://github.com/akmamun/laravel-5.5-auth-email-verification
- Owner: akmamun
- Created: 2018-02-10T14:47:58.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-13T10:22:39.000Z (over 6 years ago)
- Last Synced: 2024-10-11T10:42:25.810Z (3 months ago)
- Topics: authentication, email-verification, job-queue, laravel, laravel55, php, verification
- Language: PHP
- Homepage:
- Size: 179 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# 1. env file mail setup
```php
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=null
```
# Note: Use this function in 'Auth/LoginController' to Overwrite Laravel Building Auth Login
- Laravel Building Auth Login Not Verify Email Login System, Overwrite User Can Not Access to Login Without Verified Mail
```php
use Illuminate\Http\Request;
protected function credentials(Request $request)
{
return array_merge($request->only($this->username(), 'password'), ['verified' => 1]);
}