laravel-phone-auth maintained by ert3e
Description
Laravel+livewire phone auth module
Author
Dmitriy Samoylenko
Last update
2022/04/18 06:58
(dev-main)
License
Downloads
10
Tags
laravel-phone-auth
Important
- Need laravel livewire package
- The default template uses tailwind classes (customize it if you want)
Install
-
install livewire
-
install doctrine/dbal
-
composer require lee-to/laravel-phone-auth
-
php artisan vendor:publish --provider="Ert3e\PhoneAuth\Providers\PhoneAuthServiceProvider"
-
configure config/phone_auth.php
Usage
User Model
- Add PhoneVerification Trait to User Model
use PhoneVerification;
- Add phone cast to User Model
protected $casts = [
'phone' => PhoneCast::class
];
Blade component
Auth/Phone verification form
- Simple
@livewire('phone-verification')
- Without form wrap
@livewire('phone-verification', ['formWrap' => false])
- Register new or login if phone verified and exist
@livewire('phone-verification', ['loginAndRegister' => true])
Check phone confirmed
\Ert3e\PhoneAuth\Models\ConfirmedPhone::confirmed($phone, $user_id = null);
Components properties (override config)
- stopEvents (bool) = turn off emitBefore, emitAfter
- customRedirectTo (bool|array) = redirect after success
- emptyCustomFields (bool) = disable custom fields
- customParams (array) = send custom properties to view
<livewire:phone-verification
:stopEvents="true"
:customRedirectTo="'/'"
:emptyCustomFields="true"
:customParams="['btn' => 'Login', 'title' => 'Login']"
:formWrap="false"
:loginAndRegister="true"
/>