emotality / laravel-otp
A Laravel package to send OTP via email & SMS.
v1.1
2022-11-01 11:52 UTC
Requires
- php: >=7.2.5
- ext-json: *
- illuminate/http: ^7.0|^8.0|^9.0
This package is auto-updated.
Last update: 2024-10-12 08:10:52 UTC
README
A Laravel package to send OTP via email & SMS. Specify different models and their columns!
Installation
composer require emotality/laravel-otp
php artisan vendor:publish --provider="Emotality\OTP\OTPServiceProvider"
- Configure your
config/otp.php
file
Usage
Import OTP
class:
use Emotality\OTP\OTP;
Send OTP to the user that just logged in:
OTP::email($user); OTP::sms($user); OTP::smsOrEmail($user); OTP::smsAndEmail($user);
If OTP was entered correctly, you can remove OTP from database:
OTP::clear($user);
Providers
- Nexmo/Vonage
- PanaceaMobile
- More coming soon!
License
laravel-otp is released under the MIT license. See LICENSE for details.