lee-to/laravel-phone-auth

Laravel+livewire phone auth module
248 18
Install
composer require lee-to/laravel-phone-auth
Latest Version:0.5.1.6
PHP:^7.3|^8.0
License:MIT
Last Updated:Jun 11, 2023
Links: GitHub  ·  Packagist
Maintainer: lee-to

laravel-phone-auth

https://youtu.be/UaYx2VgXMEY

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="Leeto\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

\Leeto\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"
/>

Related Packages

roots/acorn

Framework for Roots WordPress projects built with Laravel components.

2,452,251 989
tanthammar/tall-forms

A dynamic, responsive Laravel Livewire form generator with realtime validation,...

38,429 680
rappasoft/laravel-livewire-tables

A dynamic table component for Laravel Livewire

2,988,154 1,974
wire-elements/modal

Laravel Livewire modal component

4,231,588 1,212